Class: Aws::SecurityAgent::Types::ProviderInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure, Aws::Structure::Union
Defined in:
lib/aws-sdk-securityagent/types.rb

Overview

Note:

ProviderInput is a union - when making an API calls you must set exactly one of the members.

The provider-specific input for creating an integration. This is a union type that contains provider-specific configuration.

Direct Known Subclasses

Bitbucket, Confluence, Github, Gitlab, Unknown

Defined Under Namespace

Classes: Bitbucket, Confluence, Github, Gitlab, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bitbucketTypes::BitbucketIntegrationInput

The configuration for a Bitbucket integration.



6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
# File 'lib/aws-sdk-securityagent/types.rb', line 6467

class ProviderInput < Struct.new(
  :github,
  :gitlab,
  :bitbucket,
  :confluence,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Github < ProviderInput; end
  class Gitlab < ProviderInput; end
  class Bitbucket < ProviderInput; end
  class Confluence < ProviderInput; end
  class Unknown < ProviderInput; end
end

#confluenceTypes::ConfluenceIntegrationInput

The configuration for a Confluence integration.



6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
# File 'lib/aws-sdk-securityagent/types.rb', line 6467

class ProviderInput < Struct.new(
  :github,
  :gitlab,
  :bitbucket,
  :confluence,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Github < ProviderInput; end
  class Gitlab < ProviderInput; end
  class Bitbucket < ProviderInput; end
  class Confluence < ProviderInput; end
  class Unknown < ProviderInput; end
end

#githubTypes::GitHubIntegrationInput

The GitHub-specific input for creating an integration.



6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
# File 'lib/aws-sdk-securityagent/types.rb', line 6467

class ProviderInput < Struct.new(
  :github,
  :gitlab,
  :bitbucket,
  :confluence,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Github < ProviderInput; end
  class Gitlab < ProviderInput; end
  class Bitbucket < ProviderInput; end
  class Confluence < ProviderInput; end
  class Unknown < ProviderInput; end
end

#gitlabTypes::GitLabIntegrationInput

The configuration for a GitLab integration.



6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
# File 'lib/aws-sdk-securityagent/types.rb', line 6467

class ProviderInput < Struct.new(
  :github,
  :gitlab,
  :bitbucket,
  :confluence,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Github < ProviderInput; end
  class Gitlab < ProviderInput; end
  class Bitbucket < ProviderInput; end
  class Confluence < ProviderInput; end
  class Unknown < ProviderInput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6467
6468
6469
# File 'lib/aws-sdk-securityagent/types.rb', line 6467

def unknown
  @unknown
end