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.
-
#events_listener_ingress_endpoint ⇒ String
Optional.
-
#private_connectivity_enabled ⇒ Boolean
(also: #private_connectivity_enabled?)
Optional.
-
#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.
1642 1643 1644 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1642 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
1606 1607 1608 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1606 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
1611 1612 1613 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1611 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
1617 1618 1619 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1617 def encryption_key @encryption_key end |
#enrichment_enabled ⇒ Boolean Also known as: enrichment_enabled?
Enrichment Enabled.
Corresponds to the JSON property enrichmentEnabled
1622 1623 1624 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1622 def enrichment_enabled @enrichment_enabled end |
#events_listener_ingress_endpoint ⇒ String
Optional. Ingress endpoint of the event listener. This is used only when
private connectivity is enabled.
Corresponds to the JSON property eventsListenerIngressEndpoint
1629 1630 1631 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1629 def events_listener_ingress_endpoint @events_listener_ingress_endpoint end |
#private_connectivity_enabled ⇒ Boolean Also known as: private_connectivity_enabled?
Optional. Private Connectivity Enabled.
Corresponds to the JSON property privateConnectivityEnabled
1634 1635 1636 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1634 def private_connectivity_enabled @private_connectivity_enabled end |
#registration_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
Corresponds to the JSON property registrationDestinationConfig
1640 1641 1642 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1640 def registration_destination_config @registration_destination_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1647 1648 1649 1650 1651 1652 1653 1654 1655 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1647 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) @events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint) @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled) @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config) end |