Class: Google::Apis::BigtableadminV1::CreateClusterMetadata

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

Overview

The metadata for the Operation returned by CreateCluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CreateClusterMetadata

Returns a new instance of CreateClusterMetadata.



110
111
112
# File 'generated/google/apis/bigtableadmin_v1/classes.rb', line 110

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

Instance Attribute Details

#finish_timeString

The time at which the operation failed or was completed successfully. Corresponds to the JSON property finishTime

Returns:

  • (String)


87
88
89
# File 'generated/google/apis/bigtableadmin_v1/classes.rb', line 87

def finish_time
  @finish_time
end

#original_requestGoogle::Apis::BigtableadminV1::CreateClusterRequest

Request message for BigtableInstanceAdmin.CreateCluster. Corresponds to the JSON property originalRequest



92
93
94
# File 'generated/google/apis/bigtableadmin_v1/classes.rb', line 92

def original_request
  @original_request
end

#request_timeString

The time at which the original request was received. Corresponds to the JSON property requestTime

Returns:

  • (String)


97
98
99
# File 'generated/google/apis/bigtableadmin_v1/classes.rb', line 97

def request_time
  @request_time
end

#tablesHash<String,Google::Apis::BigtableadminV1::TableProgress>

Keys: the full name of each table that existed in the instance when CreateCluster was first called, i.e. projects/<project>/instances/<instance>/tables/<table>. 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



108
109
110
# File 'generated/google/apis/bigtableadmin_v1/classes.rb', line 108

def tables
  @tables
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



115
116
117
118
119
120
# File 'generated/google/apis/bigtableadmin_v1/classes.rb', line 115

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