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



1134
1135
1136
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1134

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



1132
1133
1134
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1132

def modifications
  @modifications
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1139
1140
1141
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1139

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