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.
1545 1546 1547 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1545 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
1521 1522 1523 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1521 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
1526 1527 1528 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1526 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
1532 1533 1534 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1532 def encryption_key @encryption_key end |
#enrichment_enabled ⇒ Boolean Also known as: enrichment_enabled?
Enrichment Enabled.
Corresponds to the JSON property enrichmentEnabled
1537 1538 1539 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1537 def enrichment_enabled @enrichment_enabled end |
#registration_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
Corresponds to the JSON property registrationDestinationConfig
1543 1544 1545 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1543 def registration_destination_config @registration_destination_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1550 1551 1552 1553 1554 1555 1556 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1550 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 |