class Google::Apis::DataflowV1b3::BigTableIoDetails

Metadata for a Cloud Bigtable connector used by the job.

Attributes

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]

table_id[RW]

TableId accessed in the connection. Corresponds to the JSON property `tableId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 269
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 274
def update!(**args)
  @instance_id = args[:instance_id] if args.key?(:instance_id)
  @project_id = args[:project_id] if args.key?(:project_id)
  @table_id = args[:table_id] if args.key?(:table_id)
end