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

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

Overview

The action to take.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Action

Returns a new instance of Action.



473
474
475
# File 'generated/google/apis/storage_v1/classes.rb', line 473

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

Instance Attribute Details

#storage_classString

Target storage class. Required iff the type of the action is SetStorageClass. Corresponds to the JSON property storageClass

Returns:

  • (String)


466
467
468
# File 'generated/google/apis/storage_v1/classes.rb', line 466

def storage_class
  @storage_class
end

#typeString

Type of the action. Currently, only Delete and SetStorageClass are supported. Corresponds to the JSON property type

Returns:

  • (String)


471
472
473
# File 'generated/google/apis/storage_v1/classes.rb', line 471

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



478
479
480
481
# File 'generated/google/apis/storage_v1/classes.rb', line 478

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