Class: Google::Apis::StorageV1::Bucket::Lifecycle
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::StorageV1::Bucket::Lifecycle
 
- 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 bucket's lifecycle configuration. See lifecycle management for more information.
Defined Under Namespace
Classes: Rule
Instance Attribute Summary collapse
- 
  
    
      #rule  ⇒ Array<Google::Apis::StorageV1::Bucket::Lifecycle::Rule> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A lifecycle management rule, which is made of an action to take and the condition(s) under which the action will be taken. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Lifecycle 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Lifecycle. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Lifecycle
Returns a new instance of Lifecycle
| 303 304 305 | # File 'generated/google/apis/storage_v1/classes.rb', line 303 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#rule ⇒ Array<Google::Apis::StorageV1::Bucket::Lifecycle::Rule>
A lifecycle management rule, which is made of an action to take and the
condition(s) under which the action will be taken.
Corresponds to the JSON property rule
| 301 302 303 | # File 'generated/google/apis/storage_v1/classes.rb', line 301 def rule @rule end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 308 309 310 | # File 'generated/google/apis/storage_v1/classes.rb', line 308 def update!(**args) @rule = args[:rule] if args.key?(:rule) end |