Class: Google::Apis::BigtableadminV2::CreateClusterMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::BigtableadminV2::CreateClusterMetadata
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb 
Overview
The metadata for the Operation returned by CreateCluster.
Instance Attribute Summary collapse
- 
  
    
      #finish_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time at which the operation failed or was completed successfully.
 - 
  
    
      #original_request  ⇒ Google::Apis::BigtableadminV2::CreateClusterRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Request message for BigtableInstanceAdmin.CreateCluster.
 - 
  
    
      #request_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time at which the original request was received.
 - 
  
    
      #tables  ⇒ Hash<String,Google::Apis::BigtableadminV2::TableProgress> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Keys: the full
nameof each table that existed in the instance when CreateCluster was first called, i.e. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreateClusterMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CreateClusterMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ CreateClusterMetadata
Returns a new instance of CreateClusterMetadata.
      1075 1076 1077  | 
    
      # File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1075 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#finish_time ⇒ String
The time at which the operation failed or was completed successfully.
Corresponds to the JSON property finishTime
      1054 1055 1056  | 
    
      # File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1054 def finish_time @finish_time end  | 
  
#original_request ⇒ Google::Apis::BigtableadminV2::CreateClusterRequest
Request message for BigtableInstanceAdmin.CreateCluster.
Corresponds to the JSON property originalRequest
      1059 1060 1061  | 
    
      # File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1059 def original_request @original_request end  | 
  
#request_time ⇒ String
The time at which the original request was received.
Corresponds to the JSON property requestTime
      1064 1065 1066  | 
    
      # File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1064 def request_time @request_time end  | 
  
#tables ⇒ Hash<String,Google::Apis::BigtableadminV2::TableProgress>
Keys: the full name of each table that existed in the instance when
CreateCluster was first called, i.e. projects//instances//tables/. Any table
added to the instance by a later API call will be created in the new cluster
by that API call, not this one. Values: information on how much of a table's
data has been copied to the newly-created cluster so far.
Corresponds to the JSON property tables
      1073 1074 1075  | 
    
      # File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1073 def tables @tables end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1080 1081 1082 1083 1084 1085  | 
    
      # File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1080 def update!(**args) @finish_time = args[:finish_time] if args.key?(:finish_time) @original_request = args[:original_request] if args.key?(:original_request) @request_time = args[:request_time] if args.key?(:request_time) @tables = args[:tables] if args.key?(:tables) end  |