import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
 * Deploy additional node pools to an existing Vultr Kubernetes Engine (VKE) cluster.
 *
 * ## Example Usage
 *
 * Create a new VKE cluster:
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as vultr from "@ediri/vultr";
 *
 * const np_1 = new vultr.KubernetesNodePools("np-1", {
 *     clusterId: vultr_kubernetes.k8.id,
 *     nodeQuantity: 1,
 *     plan: "vc2-2c-4gb",
 *     label: "my-label",
 *     tag: "my-tag",
 *     autoScaler: true,
 *     minNodes: 1,
 *     maxNodes: 2,
 * });
 * ```
 *
 * ## Import
 *
 * Node pool resources are able to be imported into terraform state like other
 *
 * resources, however, since they rely on a kubernetes cluster, the import state
 *
 * requires the UUID of the cluster as well. With that in mind, format the second
 *
 * argument to the `pulumi import` command as a space delimited string of
 *
 * UUIDs, the first is the cluster ID, the second is the node pool ID. It will
 *
 * look like this:
 *
 * "clusterID nodePoolID"
 *
 * ```sh
 * $ pulumi import vultr:index/kubernetesNodePools:KubernetesNodePools my-k8s-np "7365a98b-5a43-450f-bd27-d768827100e5 ec330340-4f50-4526-858f-a39199f568ac"
 * ```
 */
export declare class KubernetesNodePools extends pulumi.CustomResource {
    /**
     * Get an existing KubernetesNodePools resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: KubernetesNodePoolsState, opts?: pulumi.CustomResourceOptions): KubernetesNodePools;
    /**
     * Returns true if the given object is an instance of KubernetesNodePools.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is KubernetesNodePools;
    /**
     * Enable the auto scaler for the default node pool.
     */
    readonly autoScaler: pulumi.Output<boolean | undefined>;
    /**
     * The VKE cluster ID you want to attach this nodepool to.
     */
    readonly clusterId: pulumi.Output<string>;
    /**
     * Date node was created.
     */
    readonly dateCreated: pulumi.Output<string>;
    /**
     * Date of node pool updates.
     */
    readonly dateUpdated: pulumi.Output<string>;
    /**
     * The label to be used as a prefix for nodes in this node pool.
     */
    readonly label: pulumi.Output<string>;
    /**
     * The maximum number of nodes to use with the auto scaler.
     */
    readonly maxNodes: pulumi.Output<number | undefined>;
    /**
     * The minimum number of nodes to use with the auto scaler.
     */
    readonly minNodes: pulumi.Output<number | undefined>;
    /**
     * The number of nodes in this node pool.
     */
    readonly nodeQuantity: pulumi.Output<number>;
    /**
     * Array that contains information about nodes within this node pool.
     */
    readonly nodes: pulumi.Output<outputs.KubernetesNodePoolsNode[]>;
    /**
     * The plan to be used in this node pool. [See Plans List](https://www.vultr.com/api/#operation/list-plans) Note the minimum plan requirements must have at least 1 core and 2 gbs of memory.
     */
    readonly plan: pulumi.Output<string>;
    /**
     * Status of node.
     */
    readonly status: pulumi.Output<string>;
    /**
     * A tag that is assigned to this node pool.
     */
    readonly tag: pulumi.Output<string | undefined>;
    /**
     * Create a KubernetesNodePools resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: KubernetesNodePoolsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering KubernetesNodePools resources.
 */
export interface KubernetesNodePoolsState {
    /**
     * Enable the auto scaler for the default node pool.
     */
    autoScaler?: pulumi.Input<boolean>;
    /**
     * The VKE cluster ID you want to attach this nodepool to.
     */
    clusterId?: pulumi.Input<string>;
    /**
     * Date node was created.
     */
    dateCreated?: pulumi.Input<string>;
    /**
     * Date of node pool updates.
     */
    dateUpdated?: pulumi.Input<string>;
    /**
     * The label to be used as a prefix for nodes in this node pool.
     */
    label?: pulumi.Input<string>;
    /**
     * The maximum number of nodes to use with the auto scaler.
     */
    maxNodes?: pulumi.Input<number>;
    /**
     * The minimum number of nodes to use with the auto scaler.
     */
    minNodes?: pulumi.Input<number>;
    /**
     * The number of nodes in this node pool.
     */
    nodeQuantity?: pulumi.Input<number>;
    /**
     * Array that contains information about nodes within this node pool.
     */
    nodes?: pulumi.Input<pulumi.Input<inputs.KubernetesNodePoolsNode>[]>;
    /**
     * The plan to be used in this node pool. [See Plans List](https://www.vultr.com/api/#operation/list-plans) Note the minimum plan requirements must have at least 1 core and 2 gbs of memory.
     */
    plan?: pulumi.Input<string>;
    /**
     * Status of node.
     */
    status?: pulumi.Input<string>;
    /**
     * A tag that is assigned to this node pool.
     */
    tag?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a KubernetesNodePools resource.
 */
export interface KubernetesNodePoolsArgs {
    /**
     * Enable the auto scaler for the default node pool.
     */
    autoScaler?: pulumi.Input<boolean>;
    /**
     * The VKE cluster ID you want to attach this nodepool to.
     */
    clusterId: pulumi.Input<string>;
    /**
     * The label to be used as a prefix for nodes in this node pool.
     */
    label: pulumi.Input<string>;
    /**
     * The maximum number of nodes to use with the auto scaler.
     */
    maxNodes?: pulumi.Input<number>;
    /**
     * The minimum number of nodes to use with the auto scaler.
     */
    minNodes?: pulumi.Input<number>;
    /**
     * The number of nodes in this node pool.
     */
    nodeQuantity: pulumi.Input<number>;
    /**
     * The plan to be used in this node pool. [See Plans List](https://www.vultr.com/api/#operation/list-plans) Note the minimum plan requirements must have at least 1 core and 2 gbs of memory.
     */
    plan: pulumi.Input<string>;
    /**
     * A tag that is assigned to this node pool.
     */
    tag?: pulumi.Input<string>;
}
