class Google::Apis::BigtableadminV1::CreateClusterMetadata

The metadata for the Operation returned by CreateCluster.

Attributes

finish_time[RW]

The time at which the operation failed or was completed successfully. Corresponds to the JSON property `finishTime` @return [String]

original_request[RW]

Request message for BigtableInstanceAdmin.CreateCluster. Corresponds to the JSON property `originalRequest` @return [Google::Apis::BigtableadminV1::CreateClusterRequest]

request_time[RW]

The time at which the original request was received. Corresponds to the JSON property `requestTime` @return [String]

tables[RW]

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` @return [Hash<String,Google::Apis::BigtableadminV1::TableProgress>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 261
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigtableadmin_v1/classes.rb, line 266
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