import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Kubernetes Fleet Manager. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleKubernetesFleetManager = new azure.containerservice.KubernetesFleetManager("example", { * location: example.location, * name: "example", * resourceGroupName: example.name, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.ContainerService` - 2024-04-01 * * ## Import * * An existing Kubernetes Fleet Manager can be imported into Pulumi using the `resource id`, e.g. * * ```sh * $ pulumi import azure:containerservice/kubernetesFleetManager:KubernetesFleetManager example /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName} * ``` * * * Where `{subscriptionId}` is the ID of the Azure Subscription where the Kubernetes Fleet Manager exists. For example `12345678-1234-9876-4563-123456789012`. * * Where `{resourceGroupName}` is the name of Resource Group where this Kubernetes Fleet Manager exists. For example `example-resource-group`. * * Where `{fleetName}` is the name of the Fleet. For example `fleetValue`. */ export declare class KubernetesFleetManager extends pulumi.CustomResource { /** * Get an existing KubernetesFleetManager 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?: KubernetesFleetManagerState, opts?: pulumi.CustomResourceOptions): KubernetesFleetManager; /** * Returns true if the given object is an instance of KubernetesFleetManager. 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 KubernetesFleetManager; /** * @deprecated The service team has indicated this field is now deprecated and not to be used, as such we are marking it as such and no longer sending it to the API, please see url: https://learn.microsoft.com/en-us/azure/kubernetes-fleet/architectural-overview */ readonly hubProfile: pulumi.Output; /** * The Azure Region where the Kubernetes Fleet Manager should exist. Changing this forces a new Kubernetes Fleet Manager to be created. */ readonly location: pulumi.Output; /** * Specifies the name of this Kubernetes Fleet Manager. Changing this forces a new Kubernetes Fleet Manager to be created. */ readonly name: pulumi.Output; /** * Specifies the name of the Resource Group within which this Kubernetes Fleet Manager should exist. Changing this forces a new Kubernetes Fleet Manager to be created. */ readonly resourceGroupName: pulumi.Output; /** * A mapping of tags which should be assigned to the Kubernetes Fleet Manager. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a KubernetesFleetManager 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: KubernetesFleetManagerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KubernetesFleetManager resources. */ export interface KubernetesFleetManagerState { /** * @deprecated The service team has indicated this field is now deprecated and not to be used, as such we are marking it as such and no longer sending it to the API, please see url: https://learn.microsoft.com/en-us/azure/kubernetes-fleet/architectural-overview */ hubProfile?: pulumi.Input; /** * The Azure Region where the Kubernetes Fleet Manager should exist. Changing this forces a new Kubernetes Fleet Manager to be created. */ location?: pulumi.Input; /** * Specifies the name of this Kubernetes Fleet Manager. Changing this forces a new Kubernetes Fleet Manager to be created. */ name?: pulumi.Input; /** * Specifies the name of the Resource Group within which this Kubernetes Fleet Manager should exist. Changing this forces a new Kubernetes Fleet Manager to be created. */ resourceGroupName?: pulumi.Input; /** * A mapping of tags which should be assigned to the Kubernetes Fleet Manager. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a KubernetesFleetManager resource. */ export interface KubernetesFleetManagerArgs { /** * @deprecated The service team has indicated this field is now deprecated and not to be used, as such we are marking it as such and no longer sending it to the API, please see url: https://learn.microsoft.com/en-us/azure/kubernetes-fleet/architectural-overview */ hubProfile?: pulumi.Input; /** * The Azure Region where the Kubernetes Fleet Manager should exist. Changing this forces a new Kubernetes Fleet Manager to be created. */ location?: pulumi.Input; /** * Specifies the name of this Kubernetes Fleet Manager. Changing this forces a new Kubernetes Fleet Manager to be created. */ name?: pulumi.Input; /** * Specifies the name of the Resource Group within which this Kubernetes Fleet Manager should exist. Changing this forces a new Kubernetes Fleet Manager to be created. */ resourceGroupName: pulumi.Input; /** * A mapping of tags which should be assigned to the Kubernetes Fleet Manager. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }