Class: Google::Apis::ConnectorsV1::EventingConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::EventingConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Eventing Configuration of a connection
Instance Attribute Summary collapse
-
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Additional eventing related field values Corresponds to the JSON property
additionalVariables. -
#auth_config ⇒ Google::Apis::ConnectorsV1::AuthConfig
AuthConfig defines details of a authentication type.
-
#encryption_key ⇒ Google::Apis::ConnectorsV1::ConfigVariable
ConfigVariable represents a configuration variable present in a Connection.
-
#enrichment_enabled ⇒ Boolean
(also: #enrichment_enabled?)
Enrichment Enabled.
-
#registration_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EventingConfig
constructor
A new instance of EventingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EventingConfig
Returns a new instance of EventingConfig.
1547 1548 1549 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1547 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Additional eventing related field values
Corresponds to the JSON property additionalVariables
1523 1524 1525 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1523 def additional_variables @additional_variables end |
#auth_config ⇒ Google::Apis::ConnectorsV1::AuthConfig
AuthConfig defines details of a authentication type.
Corresponds to the JSON property authConfig
1528 1529 1530 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1528 def auth_config @auth_config end |
#encryption_key ⇒ Google::Apis::ConnectorsV1::ConfigVariable
ConfigVariable represents a configuration variable present in a Connection. or
AuthConfig.
Corresponds to the JSON property encryptionKey
1534 1535 1536 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1534 def encryption_key @encryption_key end |
#enrichment_enabled ⇒ Boolean Also known as: enrichment_enabled?
Enrichment Enabled.
Corresponds to the JSON property enrichmentEnabled
1539 1540 1541 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1539 def enrichment_enabled @enrichment_enabled end |
#registration_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
Corresponds to the JSON property registrationDestinationConfig
1545 1546 1547 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1545 def registration_destination_config @registration_destination_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1552 1553 1554 1555 1556 1557 1558 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1552 def update!(**args) @additional_variables = args[:additional_variables] if args.key?(:additional_variables) @auth_config = args[:auth_config] if args.key?(:auth_config) @encryption_key = args[:encryption_key] if args.key?(:encryption_key) @enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled) @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config) end |