Class: Google::Apis::StorageV1::Bucket::Lifecycle::Rule

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

Defined Under Namespace

Classes: Action, Condition

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Rule

Returns a new instance of Rule.



686
687
688
# File 'lib/google/apis/storage_v1/classes.rb', line 686

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

Instance Attribute Details

#actionGoogle::Apis::StorageV1::Bucket::Lifecycle::Rule::Action

The action to take. Corresponds to the JSON property action



679
680
681
# File 'lib/google/apis/storage_v1/classes.rb', line 679

def action
  @action
end

#conditionGoogle::Apis::StorageV1::Bucket::Lifecycle::Rule::Condition

The condition(s) under which the action will be taken. Corresponds to the JSON property condition



684
685
686
# File 'lib/google/apis/storage_v1/classes.rb', line 684

def condition
  @condition
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



691
692
693
694
# File 'lib/google/apis/storage_v1/classes.rb', line 691

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