Class: Google::Apis::BigtableadminV2::UpdateClusterMetadata
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::UpdateClusterMetadata
- 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 UpdateCluster.
Instance Attribute Summary collapse
-
#finish_time ⇒ String
The time at which the operation failed or was completed successfully.
-
#original_request ⇒ Google::Apis::BigtableadminV2::Cluster
A resizable group of nodes in a particular cloud location, capable of serving all Tables in the parent Instance.
-
#request_time ⇒ String
The time at which the original request was received.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateClusterMetadata
constructor
A new instance of UpdateClusterMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateClusterMetadata
Returns a new instance of UpdateClusterMetadata
1617 1618 1619 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1617 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
1603 1604 1605 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1603 def finish_time @finish_time end |
#original_request ⇒ Google::Apis::BigtableadminV2::Cluster
A resizable group of nodes in a particular cloud location, capable
of serving all Tables in the parent
Instance.
Corresponds to the JSON property originalRequest
1610 1611 1612 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1610 def original_request @original_request end |
#request_time ⇒ String
The time at which the original request was received.
Corresponds to the JSON property requestTime
1615 1616 1617 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1615 def request_time @request_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1622 1623 1624 1625 1626 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1622 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 |