Class: Google::Apis::DataflowV1b3::BigTableIoDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb

Overview

Metadata for a Cloud Bigtable connector used by the job.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BigTableIoDetails

Returns a new instance of BigTableIoDetails.



298
299
300
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 298

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

Instance Attribute Details

#instance_idString

InstanceId accessed in the connection. Corresponds to the JSON property instanceId

Returns:

  • (String)


286
287
288
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 286

def instance_id
  @instance_id
end

#project_idString

ProjectId accessed in the connection. Corresponds to the JSON property projectId

Returns:

  • (String)


291
292
293
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 291

def project_id
  @project_id
end

#table_idString

TableId accessed in the connection. Corresponds to the JSON property tableId

Returns:

  • (String)


296
297
298
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 296

def table_id
  @table_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



303
304
305
306
307
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 303

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