Class: Google::Apis::StorageV1beta2::Bucket::Lifecycle::Rule

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

Defined Under Namespace

Classes: Action, Condition

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) ⇒ Rule

Returns a new instance of Rule.



222
223
224
# File 'generated/google/apis/storage_v1beta2/classes.rb', line 222

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

Instance Attribute Details

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

The action to take. Corresponds to the JSON property action



215
216
217
# File 'generated/google/apis/storage_v1beta2/classes.rb', line 215

def action
  @action
end

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

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



220
221
222
# File 'generated/google/apis/storage_v1beta2/classes.rb', line 220

def condition
  @condition
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



227
228
229
230
# File 'generated/google/apis/storage_v1beta2/classes.rb', line 227

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