Show / Hide Table of Contents

Class InstanceGroupManagerStatus

Inheritance
System.Object
InstanceGroupManagerStatus
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 InstanceGroupManagerStatus : IDirectResponseSchema

Properties

Autoscaler

[Output Only] The URL of the Autoscaler that targets this instance group manager.

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

ETag

The ETag of the item.

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

IsStable

[Output Only] A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.

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

Stateful

[Output Only] Stateful status of the given Instance Group Manager.

Declaration
[JsonProperty("stateful")]
public virtual InstanceGroupManagerStatusStateful Stateful { get; set; }
Property Value
Type Description
InstanceGroupManagerStatusStateful

VersionTarget

[Output Only] A status of consistency of Instances' versions with their target version specified by version field on Instance Group Manager.

Declaration
[JsonProperty("versionTarget")]
public virtual InstanceGroupManagerStatusVersionTarget VersionTarget { get; set; }
Property Value
Type Description
InstanceGroupManagerStatusVersionTarget

Implements

IDirectResponseSchema
In This Article
Back to top