Class: Google::Apis::BigtableadminV2::Intersection

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb

Overview

A GcRule which deletes cells matching all of the given rules.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Intersection

Returns a new instance of Intersection.



2293
2294
2295
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2293

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

Instance Attribute Details

#rulesArray<Google::Apis::BigtableadminV2::GcRule>

Only delete cells which would be deleted by every element of rules. Corresponds to the JSON property rules



2291
2292
2293
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2291

def rules
  @rules
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2298
2299
2300
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2298

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