Class: Google::Apis::StorageV1::Bucket::Lifecycle::Rule
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::StorageV1::Bucket::Lifecycle::Rule
 
- 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
Defined Under Namespace
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ Google::Apis::StorageV1::Bucket::Lifecycle::Rule::Action 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action to take. 
- 
  
    
      #condition  ⇒ Google::Apis::StorageV1::Bucket::Lifecycle::Rule::Condition 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The condition(s) under which the action will be taken. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Rule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Rule. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Rule
Returns a new instance of Rule
| 326 327 328 | # File 'generated/google/apis/storage_v1/classes.rb', line 326 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#action ⇒ Google::Apis::StorageV1::Bucket::Lifecycle::Rule::Action
The action to take.
Corresponds to the JSON property action
| 319 320 321 | # File 'generated/google/apis/storage_v1/classes.rb', line 319 def action @action end | 
#condition ⇒ Google::Apis::StorageV1::Bucket::Lifecycle::Rule::Condition
The condition(s) under which the action will be taken.
Corresponds to the JSON property condition
| 324 325 326 | # File 'generated/google/apis/storage_v1/classes.rb', line 324 def condition @condition end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 331 332 333 334 | # File 'generated/google/apis/storage_v1/classes.rb', line 331 def update!(**args) @action = args[:action] if args.key?(:action) @condition = args[:condition] if args.key?(:condition) end |