Class: Google::Apis::StorageV1::Bucket::Lifecycle::Rule::Action
- Inherits:
-
Object
- Object
- Google::Apis::StorageV1::Bucket::Lifecycle::Rule::Action
- 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
-
#storage_class ⇒ String
Target storage class.
-
#type ⇒ String
Type of the action.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Action
constructor
A new instance of Action.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Action
Returns a new instance of Action
406 407 408 |
# File 'generated/google/apis/storage_v1/classes.rb', line 406 def initialize(**args) update!(**args) end |
Instance Attribute Details
#storage_class ⇒ String
Target storage class. Required iff the type of the action is SetStorageClass.
Corresponds to the JSON property storageClass
399 400 401 |
# File 'generated/google/apis/storage_v1/classes.rb', line 399 def storage_class @storage_class end |
#type ⇒ String
Type of the action. Currently, only Delete and SetStorageClass are supported.
Corresponds to the JSON property type
404 405 406 |
# File 'generated/google/apis/storage_v1/classes.rb', line 404 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
411 412 413 414 |
# File 'generated/google/apis/storage_v1/classes.rb', line 411 def update!(**args) @storage_class = args[:storage_class] if args.key?(:storage_class) @type = args[:type] if args.key?(:type) end |