Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PlacementPolicy

import type { PlacementPolicy } from "https://googleapis.deno.dev/v1/batch:v1.ts";

PlacementPolicy describes a group placement policy for the VMs controlled by this AllocationPolicy.

interface PlacementPolicy {
collocation?: string;
maxDistance?: bigint;
}

§Properties

§
collocation?: string
[src]

UNSPECIFIED vs. COLLOCATED (default UNSPECIFIED). Use COLLOCATED when you want VMs to be located close to each other for low network latency between the VMs. No placement policy will be generated when collocation is UNSPECIFIED.

§
maxDistance?: bigint
[src]

When specified, causes the job to fail if more than max_distance logical switches are required between VMs. Batch uses the most compact possible placement of VMs even when max_distance is not specified. An explicit max_distance makes that level of compactness a strict requirement. Not yet implemented