class Google::Apis::DataflowV1b3::SpannerIoDetails

Metadata for a Spanner connector used by the job.

Attributes

database_id[RW]

DatabaseId accessed in the connection. Corresponds to the JSON property `databaseId` @return [String]

instance_id[RW]

InstanceId accessed in the connection. Corresponds to the JSON property `instanceId` @return [String]

project_id[RW]

ProjectId accessed in the connection. Corresponds to the JSON property `projectId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 4874
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 4879
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