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



1163
1164
1165
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1163

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



1161
1162
1163
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1161

def modifications
  @modifications
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1168
1169
1170
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1168

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