Show / Hide Table of Contents

Class LifecycleConfig

Specifies the cluster auto-delete schedule configuration.

Inheritance
System.Object
LifecycleConfig
Implements
Google.Apis.Requests.IDirectResponseSchema
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.Dataproc.v1beta2.Data
Assembly: Google.Apis.Dataproc.v1beta2.dll
Syntax
public class LifecycleConfig : IDirectResponseSchema

Properties

AutoDeleteTime

Optional. The time when cluster will be auto-deleted. (see JSON representation of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json)).

Declaration
[JsonProperty("autoDeleteTime")]
public virtual object AutoDeleteTime { get; set; }
Property Value
Type Description
System.Object

AutoDeleteTtl

Optional. The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).

Declaration
[JsonProperty("autoDeleteTtl")]
public virtual object AutoDeleteTtl { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IdleDeleteTtl

Optional. The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).

Declaration
[JsonProperty("idleDeleteTtl")]
public virtual object IdleDeleteTtl { get; set; }
Property Value
Type Description
System.Object

IdleStartTime

Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json)).

Declaration
[JsonProperty("idleStartTime")]
public virtual object IdleStartTime { get; set; }
Property Value
Type Description
System.Object

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top