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



1048
1049
1050
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1048

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



1046
1047
1048
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1046

def modifications
  @modifications
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1053
1054
1055
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1053

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