import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Kubernetes Fleet Manager. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getFleetManager({ * name: "example", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerService` - 2024-04-01 */ export declare function getFleetManager(args: GetFleetManagerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetManager. */ export interface GetFleetManagerArgs { /** * The name of this Kubernetes Fleet Manager. */ name: string; /** * The name of the Resource Group where the Kubernetes Fleet Manager exists. */ resourceGroupName: string; } /** * A collection of values returned by getFleetManager. */ export interface GetFleetManagerResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Kubernetes Fleet Manager exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the Kubernetes Fleet Manager. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Kubernetes Fleet Manager. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.containerservice.getFleetManager({ * name: "example", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ContainerService` - 2024-04-01 */ export declare function getFleetManagerOutput(args: GetFleetManagerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetManager. */ export interface GetFleetManagerOutputArgs { /** * The name of this Kubernetes Fleet Manager. */ name: pulumi.Input; /** * The name of the Resource Group where the Kubernetes Fleet Manager exists. */ resourceGroupName: pulumi.Input; }