Class: Google::Apis::BigtableadminV2::ModifyColumnFamiliesRequest

Inherits:
Object
  • Object
show all
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

Request message for google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies

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) ⇒ ModifyColumnFamiliesRequest

Returns a new instance of ModifyColumnFamiliesRequest.



1214
1215
1216
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1214

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

Instance Attribute Details

#modificationsArray<Google::Apis::BigtableadminV2::Modification>

Modifications to be atomically applied to the specified table's families. Entries are applied in order, meaning that earlier modifications can be masked by later ones (in the case of repeated updates to the same family, for example). Corresponds to the JSON property modifications



1212
1213
1214
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1212

def modifications
  @modifications
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1219
1220
1221
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1219

def update!(**args)
  @modifications = args[:modifications] if args.key?(:modifications)
end