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.
-
#dead_letter_config ⇒ Google::Apis::ConnectorsV1::DeadLetterConfig
Dead Letter configuration details provided by the user.
-
#enrichment_enabled ⇒ Boolean
(also: #enrichment_enabled?)
Enrichment Enabled.
-
#events_listener_ingress_endpoint ⇒ String
Optional.
-
#listener_auth_config ⇒ Google::Apis::ConnectorsV1::AuthConfig
AuthConfig defines details of a authentication type.
-
#private_connectivity_enabled ⇒ Boolean
(also: #private_connectivity_enabled?)
Optional.
-
#proxy_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
-
#registration_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
-
#trigger_config_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Optional.
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.
2039 2040 2041 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2039 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
1989 1990 1991 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1989 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
1994 1995 1996 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1994 def auth_config @auth_config end |
#dead_letter_config ⇒ Google::Apis::ConnectorsV1::DeadLetterConfig
Dead Letter configuration details provided by the user.
Corresponds to the JSON property deadLetterConfig
1999 2000 2001 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1999 def dead_letter_config @dead_letter_config end |
#enrichment_enabled ⇒ Boolean Also known as: enrichment_enabled?
Enrichment Enabled.
Corresponds to the JSON property enrichmentEnabled
2004 2005 2006 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2004 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
2011 2012 2013 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2011 def events_listener_ingress_endpoint @events_listener_ingress_endpoint end |
#listener_auth_config ⇒ Google::Apis::ConnectorsV1::AuthConfig
AuthConfig defines details of a authentication type.
Corresponds to the JSON property listenerAuthConfig
2016 2017 2018 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2016 def listener_auth_config @listener_auth_config end |
#private_connectivity_enabled ⇒ Boolean Also known as: private_connectivity_enabled?
Optional. Private Connectivity Enabled.
Corresponds to the JSON property privateConnectivityEnabled
2021 2022 2023 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2021 def private_connectivity_enabled @private_connectivity_enabled end |
#proxy_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
Corresponds to the JSON property proxyDestinationConfig
2027 2028 2029 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2027 def proxy_destination_config @proxy_destination_config end |
#registration_destination_config ⇒ Google::Apis::ConnectorsV1::DestinationConfig
Define the Connectors target endpoint.
Corresponds to the JSON property registrationDestinationConfig
2032 2033 2034 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2032 def registration_destination_config @registration_destination_config end |
#trigger_config_variables ⇒ Array<Google::Apis::ConnectorsV1::ConfigVariable>
Optional. Additional eventing related field values
Corresponds to the JSON property triggerConfigVariables
2037 2038 2039 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2037 def trigger_config_variables @trigger_config_variables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2044 def update!(**args) @additional_variables = args[:additional_variables] if args.key?(:additional_variables) @auth_config = args[:auth_config] if args.key?(:auth_config) @dead_letter_config = args[:dead_letter_config] if args.key?(:dead_letter_config) @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) @listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config) @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled) @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config) @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config) @trigger_config_variables = args[:trigger_config_variables] if args.key?(:trigger_config_variables) end |