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

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

Overview

The action to take.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Action

Returns a new instance of Action.



854
855
856
# File 'lib/google/apis/storage_v1/classes.rb', line 854

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)


846
847
848
# File 'lib/google/apis/storage_v1/classes.rb', line 846

def storage_class
  @storage_class
end

#typeString

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

Returns:

  • (String)


852
853
854
# File 'lib/google/apis/storage_v1/classes.rb', line 852

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



859
860
861
862
# File 'lib/google/apis/storage_v1/classes.rb', line 859

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