class Google::Apis::BigtableadminV1::PartialUpdateInstanceRequest
Request message for BigtableInstanceAdmin.PartialUpdateInstance.
Attributes
instance[RW]
A collection of Bigtable Tables and the resources that serve them. All tables in an instance are served from all Clusters in the instance. Corresponds to the JSON property `instance` @return [Google::Apis::BigtableadminV1::Instance]
update_mask[RW]
Required. The subset of Instance
fields which should be replaced. Must be explicitly set. Corresponds to the JSON property `updateMask` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 629 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 634 def update!(**args) @instance = args[:instance] if args.key?(:instance) @update_mask = args[:update_mask] if args.key?(:update_mask) end