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 next: 19

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EventingConfig

Returns a new instance of EventingConfig.



3207
3208
3209
# File 'lib/google/apis/connectors_v1/classes.rb', line 3207

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

Instance Attribute Details

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

Optional. Additional eventing related field values Corresponds to the JSON property additionalVariables



3146
3147
3148
# File 'lib/google/apis/connectors_v1/classes.rb', line 3146

def additional_variables
  @additional_variables
end

#auth_configGoogle::Apis::ConnectorsV1::AuthConfig

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



3151
3152
3153
# File 'lib/google/apis/connectors_v1/classes.rb', line 3151

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



3156
3157
3158
# File 'lib/google/apis/connectors_v1/classes.rb', line 3156

def dead_letter_config
  @dead_letter_config
end

#enrichment_configGoogle::Apis::ConnectorsV1::EnrichmentConfig

Data enrichment configuration. Corresponds to the JSON property enrichmentConfig



3161
3162
3163
# File 'lib/google/apis/connectors_v1/classes.rb', line 3161

def enrichment_config
  @enrichment_config
end

#enrichment_enabledBoolean Also known as: enrichment_enabled?

Optional. Enrichment Enabled. Corresponds to the JSON property enrichmentEnabled

Returns:

  • (Boolean)


3166
3167
3168
# File 'lib/google/apis/connectors_v1/classes.rb', line 3166

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)


3173
3174
3175
# File 'lib/google/apis/connectors_v1/classes.rb', line 3173

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



3178
3179
3180
# File 'lib/google/apis/connectors_v1/classes.rb', line 3178

def listener_auth_config
  @listener_auth_config
end

#private_connectivity_allowlisted_projectsArray<String>

Optional. List of projects to be allowlisted for the service attachment created in the tenant project for eventing ingress. Corresponds to the JSON property privateConnectivityAllowlistedProjects

Returns:

  • (Array<String>)


3184
3185
3186
# File 'lib/google/apis/connectors_v1/classes.rb', line 3184

def private_connectivity_allowlisted_projects
  @private_connectivity_allowlisted_projects
end

#private_connectivity_enabledBoolean Also known as: private_connectivity_enabled?

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

Returns:

  • (Boolean)


3189
3190
3191
# File 'lib/google/apis/connectors_v1/classes.rb', line 3189

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



3195
3196
3197
# File 'lib/google/apis/connectors_v1/classes.rb', line 3195

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



3200
3201
3202
# File 'lib/google/apis/connectors_v1/classes.rb', line 3200

def registration_destination_config
  @registration_destination_config
end

#ssl_configGoogle::Apis::ConnectorsV1::SslConfig

SSL Configuration of a connection Corresponds to the JSON property sslConfig



3205
3206
3207
# File 'lib/google/apis/connectors_v1/classes.rb', line 3205

def ssl_config
  @ssl_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
# File 'lib/google/apis/connectors_v1/classes.rb', line 3212

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_config = args[:enrichment_config] if args.key?(:enrichment_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_allowlisted_projects = args[:private_connectivity_allowlisted_projects] if args.key?(:private_connectivity_allowlisted_projects)
  @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)
  @ssl_config = args[:ssl_config] if args.key?(:ssl_config)
end