Class: Google::Apis::ConnectorsV1::EventingConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EventingConfig

Returns a new instance of EventingConfig.



2160
2161
2162
# File 'lib/google/apis/connectors_v1/classes.rb', line 2160

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#additional_variablesArray<Google::Apis::ConnectorsV1::ConfigVariable>

Additional eventing related field values Corresponds to the JSON property additionalVariables



2115
2116
2117
# File 'lib/google/apis/connectors_v1/classes.rb', line 2115

def additional_variables
  @additional_variables
end

#auth_configGoogle::Apis::ConnectorsV1::AuthConfig

AuthConfig defines details of a authentication type. Corresponds to the JSON property authConfig



2120
2121
2122
# File 'lib/google/apis/connectors_v1/classes.rb', line 2120

def auth_config
  @auth_config
end

#dead_letter_configGoogle::Apis::ConnectorsV1::DeadLetterConfig

Dead Letter configuration details provided by the user. Corresponds to the JSON property deadLetterConfig



2125
2126
2127
# File 'lib/google/apis/connectors_v1/classes.rb', line 2125

def dead_letter_config
  @dead_letter_config
end

#enrichment_enabledBoolean Also known as: enrichment_enabled?

Enrichment Enabled. Corresponds to the JSON property enrichmentEnabled

Returns:

  • (Boolean)


2130
2131
2132
# File 'lib/google/apis/connectors_v1/classes.rb', line 2130

def enrichment_enabled
  @enrichment_enabled
end

#events_listener_ingress_endpointString

Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled. Corresponds to the JSON property eventsListenerIngressEndpoint

Returns:

  • (String)


2137
2138
2139
# File 'lib/google/apis/connectors_v1/classes.rb', line 2137

def events_listener_ingress_endpoint
  @events_listener_ingress_endpoint
end

#listener_auth_configGoogle::Apis::ConnectorsV1::AuthConfig

AuthConfig defines details of a authentication type. Corresponds to the JSON property listenerAuthConfig



2142
2143
2144
# File 'lib/google/apis/connectors_v1/classes.rb', line 2142

def listener_auth_config
  @listener_auth_config
end

#private_connectivity_enabledBoolean Also known as: private_connectivity_enabled?

Optional. Private Connectivity Enabled. Corresponds to the JSON property privateConnectivityEnabled

Returns:

  • (Boolean)


2147
2148
2149
# File 'lib/google/apis/connectors_v1/classes.rb', line 2147

def private_connectivity_enabled
  @private_connectivity_enabled
end

#proxy_destination_configGoogle::Apis::ConnectorsV1::DestinationConfig

Define the Connectors target endpoint. Corresponds to the JSON property proxyDestinationConfig



2153
2154
2155
# File 'lib/google/apis/connectors_v1/classes.rb', line 2153

def proxy_destination_config
  @proxy_destination_config
end

#registration_destination_configGoogle::Apis::ConnectorsV1::DestinationConfig

Define the Connectors target endpoint. Corresponds to the JSON property registrationDestinationConfig



2158
2159
2160
# File 'lib/google/apis/connectors_v1/classes.rb', line 2158

def registration_destination_config
  @registration_destination_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
# File 'lib/google/apis/connectors_v1/classes.rb', line 2165

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