Show / Hide Table of Contents

Class Bucket.LifecycleData.RuleData

A lifecycle management rule, which is made of an action to take and the condition(s) under which the action will be taken.

Inheritance
System.Object
Bucket.LifecycleData.RuleData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Storage.v1.Data
Assembly: Google.Apis.Storage.v1.dll
Syntax
public class RuleData

Properties

Action

The action to take.

Declaration
[JsonProperty("action")]
public virtual Bucket.LifecycleData.RuleData.ActionData Action { get; set; }
Property Value
Type Description
Bucket.LifecycleData.RuleData.ActionData

Condition

The condition(s) under which the action will be taken.

Declaration
[JsonProperty("condition")]
public virtual Bucket.LifecycleData.RuleData.ConditionData Condition { get; set; }
Property Value
Type Description
Bucket.LifecycleData.RuleData.ConditionData
In This Article
Back to top