import * as pulumi from "@pulumi/pulumi"; export declare class K8sNodeGroup extends pulumi.CustomResource { /** * Get an existing K8sNodeGroup 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, state?: K8sNodeGroupState, opts?: pulumi.CustomResourceOptions): K8sNodeGroup; /** * Returns true if the given object is an instance of K8sNodeGroup. 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 K8sNodeGroup; /** * K8S cluster ID for which node group should be created */ readonly clusterId: pulumi.Output; /** * Automatic increase/decrease of the number of nodes in a group depending on the load */ readonly isAutoscaling: pulumi.Output; readonly k8sNodeGroupId: pulumi.Output; /** * max count of nodes in group */ readonly maxSize: pulumi.Output; /** * min count of nodes in group */ readonly minSize: pulumi.Output; /** * K8S node group name */ readonly name: pulumi.Output; /** * Count of nodes in group */ readonly nodeCount: pulumi.Output; /** * Preset ID for nodes in group */ readonly presetId: pulumi.Output; /** * Create a K8sNodeGroup 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: K8sNodeGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering K8sNodeGroup resources. */ export interface K8sNodeGroupState { /** * K8S cluster ID for which node group should be created */ clusterId?: pulumi.Input; /** * Automatic increase/decrease of the number of nodes in a group depending on the load */ isAutoscaling?: pulumi.Input; k8sNodeGroupId?: pulumi.Input; /** * max count of nodes in group */ maxSize?: pulumi.Input; /** * min count of nodes in group */ minSize?: pulumi.Input; /** * K8S node group name */ name?: pulumi.Input; /** * Count of nodes in group */ nodeCount?: pulumi.Input; /** * Preset ID for nodes in group */ presetId?: pulumi.Input; } /** * The set of arguments for constructing a K8sNodeGroup resource. */ export interface K8sNodeGroupArgs { /** * K8S cluster ID for which node group should be created */ clusterId: pulumi.Input; /** * Automatic increase/decrease of the number of nodes in a group depending on the load */ isAutoscaling?: pulumi.Input; k8sNodeGroupId?: pulumi.Input; /** * max count of nodes in group */ maxSize?: pulumi.Input; /** * min count of nodes in group */ minSize?: pulumi.Input; /** * K8S node group name */ name?: pulumi.Input; /** * Count of nodes in group */ nodeCount: pulumi.Input; /** * Preset ID for nodes in group */ presetId: pulumi.Input; }