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

MultisliceParams

import type { MultisliceParams } from "https://googleapis.deno.dev/v1/tpu:v2.ts";

Parameters to specify for multislice QueuedResource requests. This message must be populated in case of multislice requests instead of node_id.

interface MultisliceParams {
nodeCount?: number;
nodeIdPrefix?: string;
}

§Properties

§
nodeCount?: number
[src]

Required. Number of nodes with this spec. The system will attempt to provison "node_count" nodes as part of the request. This needs to be > 1.

§
nodeIdPrefix?: string
[src]

Optional. Prefix of node_ids in case of multislice request. Should follow the ^[A-Za-z0-9_.~+%-]+$ regex format. If node_count = 3 and node_id_prefix = "np", node ids of nodes created will be "np-0", "np-1", "np-2". If this field is not provided we use queued_resource_id as the node_id_prefix.