Show / Hide Table of Contents

Class InstanceGroupManagerStatusStateful

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

Properties

ETag

The ETag of the item.

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

HasStatefulConfig

[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.

Declaration
[JsonProperty("hasStatefulConfig")]
public virtual bool? HasStatefulConfig { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

PerInstanceConfigs

[Output Only] Status of per-instance configs on the instance.

Declaration
[JsonProperty("perInstanceConfigs")]
public virtual InstanceGroupManagerStatusStatefulPerInstanceConfigs PerInstanceConfigs { get; set; }
Property Value
Type Description
InstanceGroupManagerStatusStatefulPerInstanceConfigs

Implements

IDirectResponseSchema
In This Article
Back to top