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

VmwareNodePool

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

Resource VmwareNodePool represents a VMware node pool. ##

interface VmwareNodePool {
annotations?: {
[key: string]: string;
}
;
readonly createTime?: Date;
readonly deleteTime?: Date;
displayName?: string;
etag?: string;
name?: string;
nodePoolAutoscaling?: VmwareNodePoolAutoscalingConfig;
onPremVersion?: string;
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 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.

§

Required. The node configuration of the node pool.

§
readonly createTime?: Date
[src]

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

§
readonly deleteTime?: Date
[src]

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

§
displayName?: string
[src]

The display name for the 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 resource name of this node pool.

§

Node pool autoscaling config for the node pool.

§
onPremVersion?: string
[src]

Anthos version for the node pool. Defaults to the user cluster version.

§
readonly reconciling?: boolean
[src]

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

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

Output only. The current state of the node pool.

§
readonly status?: ResourceStatus
[src]

Output only. ResourceStatus representing the detailed VMware node pool state.

§
readonly uid?: string
[src]

Output only. The unique identifier of the node pool.

§
readonly updateTime?: Date
[src]

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