import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get a list of OVHcloud Managed Kubernetes nodes in a specific node pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const nodes = await ovh.CloudProject.getKubeNodePoolNodes({ * serviceName: "XXXXXX", * kubeId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxx", * name: "XXXXXX", * }); * return { * nodes: nodes, * }; * } * ``` */ export declare function getKubeNodePoolNodes(args: GetKubeNodePoolNodesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKubeNodePoolNodes. */ export interface GetKubeNodePoolNodesArgs { /** * The ID of the managed kubernetes cluster. */ kubeId: string; /** * Name of the node pool from which we want the nodes. */ name: string; /** * The ID of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: string; } /** * A collection of values returned by getKubeNodePoolNodes. */ export interface GetKubeNodePoolNodesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * See Argument Reference above. */ readonly kubeId: string; /** * Name of the node. */ readonly name: string; /** * List of all nodes composing the kubernetes cluster. */ readonly nodes: outputs.CloudProject.GetKubeNodePoolNodesNode[]; /** * See Argument Reference above. */ readonly serviceName: string; } /** * Use this data source to get a list of OVHcloud Managed Kubernetes nodes in a specific node pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const nodes = await ovh.CloudProject.getKubeNodePoolNodes({ * serviceName: "XXXXXX", * kubeId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxx", * name: "XXXXXX", * }); * return { * nodes: nodes, * }; * } * ``` */ export declare function getKubeNodePoolNodesOutput(args: GetKubeNodePoolNodesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKubeNodePoolNodes. */ export interface GetKubeNodePoolNodesOutputArgs { /** * The ID of the managed kubernetes cluster. */ kubeId: pulumi.Input; /** * Name of the node pool from which we want the nodes. */ name: pulumi.Input; /** * The ID of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: pulumi.Input; }