import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Kubernetes Node Pool Snapshot. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getKubernetesNodePoolSnapshot({ * name: "example", * resourceGroupName: "example-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerService` - 2025-10-01 */ export declare function getKubernetesNodePoolSnapshot(args: GetKubernetesNodePoolSnapshotArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKubernetesNodePoolSnapshot. */ export interface GetKubernetesNodePoolSnapshotArgs { /** * The name of the Kubernetes Node Pool Snapshot. */ name: string; /** * The name of the Resource Group in which the Kubernetes Node Pool Snapshot exists. */ resourceGroupName: string; } /** * A collection of values returned by getKubernetesNodePoolSnapshot. */ export interface GetKubernetesNodePoolSnapshotResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly resourceGroupName: string; /** * The ID of the source Node Pool. */ readonly sourceNodePoolId: string; readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Kubernetes Node Pool Snapshot. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getKubernetesNodePoolSnapshot({ * name: "example", * resourceGroupName: "example-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerService` - 2025-10-01 */ export declare function getKubernetesNodePoolSnapshotOutput(args: GetKubernetesNodePoolSnapshotOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKubernetesNodePoolSnapshot. */ export interface GetKubernetesNodePoolSnapshotOutputArgs { /** * The name of the Kubernetes Node Pool Snapshot. */ name: pulumi.Input; /** * The name of the Resource Group in which the Kubernetes Node Pool Snapshot exists. */ resourceGroupName: pulumi.Input; }