import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single bare metal node pool. */ export declare function getBareMetalNodePool(args: GetBareMetalNodePoolArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetBareMetalNodePoolArgs { bareMetalClusterId: string; bareMetalNodePoolId: string; location: string; project?: string; view?: string; } export interface GetBareMetalNodePoolResult { /** * 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 annotations: { [key: string]: string; }; /** * The time at which this bare metal node pool was created. */ readonly createTime: string; /** * The time at which this bare metal node pool was deleted. If the resource is not deleted, this must be empty */ readonly deleteTime: string; /** * The display name for the bare metal node pool. */ readonly displayName: string; /** * 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. */ readonly etag: string; /** * Immutable. The bare metal node pool resource name. */ readonly name: string; /** * Node pool configuration. */ readonly nodePoolConfig: outputs.gkeonprem.v1.BareMetalNodePoolConfigResponse; /** * If set, there are currently changes in flight to the bare metal node pool. */ readonly reconciling: boolean; /** * The current state of the bare metal node pool. */ readonly state: string; /** * ResourceStatus representing the detailed node pool status. */ readonly status: outputs.gkeonprem.v1.ResourceStatusResponse; /** * The unique identifier of the bare metal node pool. */ readonly uid: string; /** * The time at which this bare metal node pool was last updated. */ readonly updateTime: string; /** * The worker node pool upgrade policy. */ readonly upgradePolicy: outputs.gkeonprem.v1.BareMetalNodePoolUpgradePolicyResponse; } /** * Gets details of a single bare metal node pool. */ export declare function getBareMetalNodePoolOutput(args: GetBareMetalNodePoolOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetBareMetalNodePoolOutputArgs { bareMetalClusterId: pulumi.Input; bareMetalNodePoolId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; view?: pulumi.Input; }