Show / Hide Table of Contents

Class InstanceGroupManagerInstanceLifecyclePolicy

Inheritance
System.Object
InstanceGroupManagerInstanceLifecyclePolicy
Implements
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.Compute.alpha.Data
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class InstanceGroupManagerInstanceLifecyclePolicy : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MetadataBasedReadinessSignal

The configuration for metadata based readiness signal sent by the instance during initialization when stopping / suspending an instance. The Instance Group Manager will wait for a signal that indicates successful initialization before stopping / suspending an instance. If a successful readiness signal is not sent before timeout, the corresponding instance will not be stopped / suspended. Instead, an error will be visible in the lastAttempt.errors field of the managed instance in the listmanagedinstances method. If metadataBasedReadinessSignal.timeoutSec is unset, the Instance Group Manager will directly proceed to suspend / stop instances, skipping initialization on them.

Declaration
[JsonProperty("metadataBasedReadinessSignal")]
public virtual InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal MetadataBasedReadinessSignal { get; set; }
Property Value
Type Description
InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal

Implements

IDirectResponseSchema
In This Article
Back to top