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

BareMetalNodePool

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

Resource that represents a bare metal node pool.

interface BareMetalNodePool {
annotations?: {
[key: string]: string;
}
;
readonly createTime?: Date;
readonly deleteTime?: Date;
displayName?: string;
etag?: string;
name?: string;
nodePoolConfig?: BareMetalNodePoolConfig;
readonly reconciling?: boolean;
readonly state?:
| "STATE_UNSPECIFIED"
| "PROVISIONING"
| "RUNNING"
| "RECONCILING"
| "STOPPING"
| "ERROR"
| "DEGRADED";
readonly status?: ResourceStatus;
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
annotations?: {
[key: string]: string;
}
[src]

Annotations on the bare metal node pool. This field has the same restrictions as Kubernetes annotations. The total size of all keys and values combined is limited to 256k. Key can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.

§
readonly createTime?: Date
[src]

Output only. The time at which this bare metal node pool was created.

§
readonly deleteTime?: Date
[src]

Output only. The time at which this bare metal node pool was deleted. If the resource is not deleted, this must be empty

§
displayName?: string
[src]

The display name for the bare metal node pool.

§
etag?: string
[src]

This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. Allows clients to perform consistent read-modify-writes through optimistic concurrency control.

§
name?: string
[src]

Immutable. The bare metal node pool resource name.

§

Required. Node pool configuration.

§
readonly reconciling?: boolean
[src]

Output only. If set, there are currently changes in flight to the bare metal node pool.

§
readonly state?: "STATE_UNSPECIFIED" | "PROVISIONING" | "RUNNING" | "RECONCILING" | "STOPPING" | "ERROR" | "DEGRADED"
[src]

Output only. The current state of the bare metal node pool.

§
readonly status?: ResourceStatus
[src]

Output only. ResourceStatus representing the detailed node pool status.

§
readonly uid?: string
[src]

Output only. The unique identifier of the bare metal node pool.

§
readonly updateTime?: Date
[src]

Output only. The time at which this bare metal node pool was last updated.

§

The worker node pool upgrade policy.