Class: Google::Apis::ConnectorsV1::RuntimeConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::RuntimeConfig
- 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
RuntimeConfig is the singleton resource of each location. It includes generic resource configs consumed by control plane and runtime plane like: pub/sub topic/subscription resource name, Cloud Storage location storing schema etc.
Instance Attribute Summary collapse
-
#connd_subscription ⇒ String
Output only.
-
#connd_topic ⇒ String
Output only.
-
#control_plane_subscription ⇒ String
Output only.
-
#control_plane_topic ⇒ String
Output only.
-
#location_id ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#runtime_endpoint ⇒ String
Output only.
-
#schema_gcs_bucket ⇒ String
Output only.
-
#service_directory ⇒ String
Output only.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuntimeConfig
constructor
A new instance of RuntimeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RuntimeConfig
Returns a new instance of RuntimeConfig.
6395 6396 6397 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6395 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connd_subscription ⇒ String
Output only. Pub/Sub subscription for connd to receive message. E.g. projects/
project-id/subscriptions/topic-id
Corresponds to the JSON property conndSubscription
6344 6345 6346 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6344 def connd_subscription @connd_subscription end |
#connd_topic ⇒ String
Output only. Pub/Sub topic for connd to send message. E.g. projects/project-
id/topics/topic-id
Corresponds to the JSON property conndTopic
6350 6351 6352 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6350 def connd_topic @connd_topic end |
#control_plane_subscription ⇒ String
Output only. Pub/Sub subscription for control plane to receive message. E.g.
projects/project-id/subscriptions/topic-id
Corresponds to the JSON property controlPlaneSubscription
6356 6357 6358 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6356 def control_plane_subscription @control_plane_subscription end |
#control_plane_topic ⇒ String
Output only. Pub/Sub topic for control plne to send message. communication. E.
g. projects/project-id/topics/topic-id
Corresponds to the JSON property controlPlaneTopic
6362 6363 6364 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6362 def control_plane_topic @control_plane_topic end |
#location_id ⇒ String
Output only. location_id of the runtime location. E.g. "us-west1".
Corresponds to the JSON property locationId
6367 6368 6369 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6367 def location_id @location_id end |
#name ⇒ String
Output only. Name of the runtimeConfig resource. Format: projects/project/
locations/location/runtimeConfig
Corresponds to the JSON property name
6373 6374 6375 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6373 def name @name end |
#runtime_endpoint ⇒ String
Output only. The endpoint of the connectors runtime ingress.
Corresponds to the JSON property runtimeEndpoint
6378 6379 6380 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6378 def runtime_endpoint @runtime_endpoint end |
#schema_gcs_bucket ⇒ String
Output only. The Cloud Storage bucket that stores connector's schema reports.
Corresponds to the JSON property schemaGcsBucket
6383 6384 6385 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6383 def schema_gcs_bucket @schema_gcs_bucket end |
#service_directory ⇒ String
Output only. The name of the Service Directory service name.
Corresponds to the JSON property serviceDirectory
6388 6389 6390 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6388 def service_directory @service_directory end |
#state ⇒ String
Output only. The state of the location.
Corresponds to the JSON property state
6393 6394 6395 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6393 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6400 def update!(**args) @connd_subscription = args[:connd_subscription] if args.key?(:connd_subscription) @connd_topic = args[:connd_topic] if args.key?(:connd_topic) @control_plane_subscription = args[:control_plane_subscription] if args.key?(:control_plane_subscription) @control_plane_topic = args[:control_plane_topic] if args.key?(:control_plane_topic) @location_id = args[:location_id] if args.key?(:location_id) @name = args[:name] if args.key?(:name) @runtime_endpoint = args[:runtime_endpoint] if args.key?(:runtime_endpoint) @schema_gcs_bucket = args[:schema_gcs_bucket] if args.key?(:schema_gcs_bucket) @service_directory = args[:service_directory] if args.key?(:service_directory) @state = args[:state] if args.key?(:state) end |