Class: Google::Apis::DataflowV1b3::BigTableIoDetails
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataflowV1b3::BigTableIoDetails
 
 
- 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 BigTable connector used by the job.
Instance Attribute Summary collapse
- 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
InstanceId accessed in the connection.
 - 
  
    
      #project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ProjectId accessed in the connection.
 - 
  
    
      #table_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
TableId accessed in the connection.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BigTableIoDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of BigTableIoDetails.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BigTableIoDetails
Returns a new instance of BigTableIoDetails
      263 264 265  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 263 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instance_id ⇒ String
InstanceId accessed in the connection.
Corresponds to the JSON property instanceId
      251 252 253  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 251 def instance_id @instance_id end  | 
  
#project_id ⇒ String
ProjectId accessed in the connection.
Corresponds to the JSON property projectId
      256 257 258  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 256 def project_id @project_id end  | 
  
#table_id ⇒ String
TableId accessed in the connection.
Corresponds to the JSON property tableId
      261 262 263  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 261 def table_id @table_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      268 269 270 271 272  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 268 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  |