Class: Google::Apis::BigtableadminV2::CreateClusterMetadata
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::CreateClusterMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigtableadmin_v2/classes.rb,
generated/google/apis/bigtableadmin_v2/representations.rb,
generated/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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateClusterMetadata
constructor
A new instance of CreateClusterMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateClusterMetadata
Returns a new instance of CreateClusterMetadata
402 403 404 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 402 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
390 391 392 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 390 def finish_time @finish_time end |
#original_request ⇒ Google::Apis::BigtableadminV2::CreateClusterRequest
Request message for BigtableInstanceAdmin.CreateCluster.
Corresponds to the JSON property originalRequest
395 396 397 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 395 def original_request @original_request end |
#request_time ⇒ String
The time at which the original request was received.
Corresponds to the JSON property requestTime
400 401 402 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 400 def request_time @request_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
407 408 409 410 411 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 407 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) end |