Show / Hide Table of Contents

Class ResourcePolicyGroupPlacementPolicy

A GroupPlacementPolicy specifies resource placement configuration. It specifies the failure bucket separation as well as network locality

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

Properties

AvailabilityDomainCount

The number of availability domains instances will be spread across. If two instances are in different availability domain, they will not be put in the same low latency network

Declaration
[JsonProperty("availabilityDomainCount")]
public virtual int? AvailabilityDomainCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Collocation

Specifies network collocation

Declaration
[JsonProperty("collocation")]
public virtual string Collocation { 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

VmCount

Number of vms in this placement group

Declaration
[JsonProperty("vmCount")]
public virtual int? VmCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top