Class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
Eventing Configuration of a connection
Instance Attribute Summary collapse
-
#additional_variables ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>
Optional.
-
#auth_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig
AuthConfig defines details of a authentication type.
-
#dead_letter_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfigDeadLetterConfig
Dead Letter configuration details provided by the user.
-
#enrichment_enabled ⇒ Boolean
(also: #enrichment_enabled?)
Optional.
-
#events_listener_ingress_endpoint ⇒ String
Optional.
-
#listener_auth_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig
AuthConfig defines details of a authentication type.
-
#private_connectivity_enabled ⇒ Boolean
(also: #private_connectivity_enabled?)
Optional.
-
#proxy_destination_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig
Define the Connectors target endpoint.
-
#registration_destination_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig
Define the Connectors target endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudConnectorsV1EventingConfig
constructor
A new instance of GoogleCloudConnectorsV1EventingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudConnectorsV1EventingConfig
Returns a new instance of GoogleCloudConnectorsV1EventingConfig.
5917 5918 5919 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5917 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_variables ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>
Optional. Additional eventing related field values
Corresponds to the JSON property additionalVariables
5872 5873 5874 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5872 def additional_variables @additional_variables end |
#auth_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig
AuthConfig defines details of a authentication type.
Corresponds to the JSON property authConfig
5877 5878 5879 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5877 def auth_config @auth_config end |
#dead_letter_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfigDeadLetterConfig
Dead Letter configuration details provided by the user.
Corresponds to the JSON property deadLetterConfig
5882 5883 5884 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5882 def dead_letter_config @dead_letter_config end |
#enrichment_enabled ⇒ Boolean Also known as: enrichment_enabled?
Optional. Enrichment Enabled.
Corresponds to the JSON property enrichmentEnabled
5887 5888 5889 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5887 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
5894 5895 5896 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5894 def events_listener_ingress_endpoint @events_listener_ingress_endpoint end |
#listener_auth_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig
AuthConfig defines details of a authentication type.
Corresponds to the JSON property listenerAuthConfig
5899 5900 5901 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5899 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
5904 5905 5906 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5904 def private_connectivity_enabled @private_connectivity_enabled end |
#proxy_destination_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig
Define the Connectors target endpoint.
Corresponds to the JSON property proxyDestinationConfig
5910 5911 5912 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5910 def proxy_destination_config @proxy_destination_config end |
#registration_destination_config ⇒ Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig
Define the Connectors target endpoint.
Corresponds to the JSON property registrationDestinationConfig
5915 5916 5917 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5915 def registration_destination_config @registration_destination_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 5922 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) end |