Show / Hide Table of Contents

Class Bucket.LifecycleData.RuleData.ActionData

The action to take.

Inheritance
System.Object
Bucket.LifecycleData.RuleData.ActionData
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 ActionData

Properties

StorageClass

Target storage class. Required iff the type of the action is SetStorageClass.

Declaration
[JsonProperty("storageClass")]
public virtual string StorageClass { get; set; }
Property Value
Type Description
System.String

Type

Type of the action. Currently, only Delete and SetStorageClass are supported.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top