Class: Google::Apis::DataflowV1b3::SpannerIoDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::SpannerIoDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
Metadata for a Spanner connector used by the job.
Instance Attribute Summary collapse
-
#database_id ⇒ String
DatabaseId accessed in the connection.
-
#instance_id ⇒ String
InstanceId accessed in the connection.
-
#project_id ⇒ String
ProjectId accessed in the connection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SpannerIoDetails
constructor
A new instance of SpannerIoDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SpannerIoDetails
Returns a new instance of SpannerIoDetails
4085 4086 4087 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4085 def initialize(**args) update!(**args) end |
Instance Attribute Details
#database_id ⇒ String
DatabaseId accessed in the connection.
Corresponds to the JSON property databaseId
4073 4074 4075 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4073 def database_id @database_id end |
#instance_id ⇒ String
InstanceId accessed in the connection.
Corresponds to the JSON property instanceId
4078 4079 4080 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4078 def instance_id @instance_id end |
#project_id ⇒ String
ProjectId accessed in the connection.
Corresponds to the JSON property projectId
4083 4084 4085 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4083 def project_id @project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4090 4091 4092 4093 4094 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4090 def update!(**args) @database_id = args[:database_id] if args.key?(:database_id) @instance_id = args[:instance_id] if args.key?(:instance_id) @project_id = args[:project_id] if args.key?(:project_id) end |