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

SlurmPartition

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

Configuration for Slurm partitions in the cluster. Partitions are groups of nodesets, and are how clients specify where their workloads should be run.

interface SlurmPartition {
id?: string;
nodeSetIds?: string[];
}

§Properties

§
id?: string
[src]

Required. ID of the partition, which is how users will identify it. Must conform to RFC-1034 (lower-case, alphanumeric, and at most 63 characters).

§
nodeSetIds?: string[]
[src]

Required. IDs of the nodesets that make up this partition. Values must match SlurmNodeSet.id.