interface PlacementGroup {
    id: string;
    name: string;
    organization: string;
    policyMode: PlacementGroupPolicyMode;
    policyRespected: boolean;
    policyType: PlacementGroupPolicyType;
    project: string;
    tags: string[];
    zone: Zone;
}

Properties

id: string

Placement group unique ID.

name: string

Placement group name.

organization: string

Placement group Organization ID.

Select the failure mode when the placement cannot be respected, either optional or enforced.

policyRespected: boolean

In the server endpoints the value is always false as it is deprecated. In the placement group endpoints the value is correct.

Select the behavior of the placement group, either low_latency (group) or max_availability (spread).

project: string

Placement group Project ID.

tags: string[]

Placement group tags.

zone: Zone

Zone in which the placement group is located.