import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import { Kind } from "./index"; /** * Manages an App Service Plan component. * * !> **NOTE:** This resource has been deprecated in version 5.0 of the provider and will be removed in version 6.0. Please use `azure.appservice.ServicePlan` resource instead. * * ## Example Usage * * ### Dedicated) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "api-rg-pro", * location: "West Europe", * }); * const examplePlan = new azure.appservice.Plan("example", { * name: "api-appserviceplan-pro", * location: example.location, * resourceGroupName: example.name, * sku: { * tier: "Standard", * size: "S1", * }, * }); * ``` * * ### Shared / Consumption Plan) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "api-rg-pro", * location: "West Europe", * }); * const examplePlan = new azure.appservice.Plan("example", { * name: "api-appserviceplan-pro", * location: example.location, * resourceGroupName: example.name, * kind: "FunctionApp", * sku: { * tier: "Dynamic", * size: "Y1", * }, * }); * ``` * * ### Linux) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "api-rg-pro", * location: "West Europe", * }); * const examplePlan = new azure.appservice.Plan("example", { * name: "api-appserviceplan-pro", * location: example.location, * resourceGroupName: example.name, * kind: "Linux", * reserved: true, * sku: { * tier: "Standard", * size: "S1", * }, * }); * ``` * * ### Windows Container) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "api-rg-pro", * location: "West Europe", * }); * const examplePlan = new azure.appservice.Plan("example", { * name: "api-appserviceplan-pro", * location: example.location, * resourceGroupName: example.name, * kind: "xenon", * isXenon: true, * sku: { * tier: "PremiumContainer", * size: "PC2", * }, * }); * ``` * * ## Import * * App Service Plan instances can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:appservice/plan:Plan instance1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/serverFarms/instance1 * ``` */ export declare class Plan extends pulumi.CustomResource { /** * Get an existing Plan 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?: PlanState, opts?: pulumi.CustomResourceOptions): Plan; /** * Returns true if the given object is an instance of Plan. 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 Plan; /** * The ID of the App Service Environment where the App Service Plan should be located. Changing forces a new resource to be created. * * > **NOTE:** Attaching to an App Service Environment requires the App Service Plan use a `Premium` SKU (when using an ASEv1) and the `Isolated` SKU (for an ASEv2). */ readonly appServiceEnvironmentId: pulumi.Output; /** * Whether to create a xenon App Service Plan. */ readonly isXenon: pulumi.Output; /** * The kind of the App Service Plan to create. Possible values are `Windows` (also available as `App`), `Linux`, `elastic` (for Premium Consumption), `xenon` and `FunctionApp` (for a Consumption Plan). Defaults to `Windows`. Changing this forces a new resource to be created. * * > **NOTE:** When creating a `Linux` App Service Plan, the `reserved` field must be set to `true`, and when creating a `Windows`/`app` App Service Plan the `reserved` field must be set to `false`. */ readonly kind: pulumi.Output; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan. */ readonly maximumElasticWorkerCount: pulumi.Output; /** * The maximum number of workers supported with the App Service Plan's sku. */ readonly maximumNumberOfWorkers: pulumi.Output; /** * Specifies the name of the App Service Plan component. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * Can Apps assigned to this App Service Plan be scaled independently? If set to `false` apps assigned to this plan will scale to all instances of the plan. */ readonly perSiteScaling: pulumi.Output; /** * Is this App Service Plan `Reserved`. */ readonly reserved: pulumi.Output; /** * The name of the resource group in which to create the App Service Plan component. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * A `sku` block as documented below. */ readonly sku: pulumi.Output; /** * A mapping of tags to assign to the resource. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Specifies if the App Service Plan should be Zone Redundant. Changing this forces a new resource to be created. * * > **NOTE:** Requires either `PremiumV2` or `PremiumV3` SKU and that at least 3 instances. For more information, please see the [App Service Team Blog](https://azure.github.io/AppService/2021/08/25/App-service-support-for-availability-zones.html). */ readonly zoneRedundant: pulumi.Output; /** * Create a Plan 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: PlanArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Plan resources. */ export interface PlanState { /** * The ID of the App Service Environment where the App Service Plan should be located. Changing forces a new resource to be created. * * > **NOTE:** Attaching to an App Service Environment requires the App Service Plan use a `Premium` SKU (when using an ASEv1) and the `Isolated` SKU (for an ASEv2). */ appServiceEnvironmentId?: pulumi.Input; /** * Whether to create a xenon App Service Plan. */ isXenon?: pulumi.Input; /** * The kind of the App Service Plan to create. Possible values are `Windows` (also available as `App`), `Linux`, `elastic` (for Premium Consumption), `xenon` and `FunctionApp` (for a Consumption Plan). Defaults to `Windows`. Changing this forces a new resource to be created. * * > **NOTE:** When creating a `Linux` App Service Plan, the `reserved` field must be set to `true`, and when creating a `Windows`/`app` App Service Plan the `reserved` field must be set to `false`. */ kind?: pulumi.Input; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan. */ maximumElasticWorkerCount?: pulumi.Input; /** * The maximum number of workers supported with the App Service Plan's sku. */ maximumNumberOfWorkers?: pulumi.Input; /** * Specifies the name of the App Service Plan component. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Can Apps assigned to this App Service Plan be scaled independently? If set to `false` apps assigned to this plan will scale to all instances of the plan. */ perSiteScaling?: pulumi.Input; /** * Is this App Service Plan `Reserved`. */ reserved?: pulumi.Input; /** * The name of the resource group in which to create the App Service Plan component. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * A `sku` block as documented below. */ sku?: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Specifies if the App Service Plan should be Zone Redundant. Changing this forces a new resource to be created. * * > **NOTE:** Requires either `PremiumV2` or `PremiumV3` SKU and that at least 3 instances. For more information, please see the [App Service Team Blog](https://azure.github.io/AppService/2021/08/25/App-service-support-for-availability-zones.html). */ zoneRedundant?: pulumi.Input; } /** * The set of arguments for constructing a Plan resource. */ export interface PlanArgs { /** * The ID of the App Service Environment where the App Service Plan should be located. Changing forces a new resource to be created. * * > **NOTE:** Attaching to an App Service Environment requires the App Service Plan use a `Premium` SKU (when using an ASEv1) and the `Isolated` SKU (for an ASEv2). */ appServiceEnvironmentId?: pulumi.Input; /** * Whether to create a xenon App Service Plan. */ isXenon?: pulumi.Input; /** * The kind of the App Service Plan to create. Possible values are `Windows` (also available as `App`), `Linux`, `elastic` (for Premium Consumption), `xenon` and `FunctionApp` (for a Consumption Plan). Defaults to `Windows`. Changing this forces a new resource to be created. * * > **NOTE:** When creating a `Linux` App Service Plan, the `reserved` field must be set to `true`, and when creating a `Windows`/`app` App Service Plan the `reserved` field must be set to `false`. */ kind?: pulumi.Input; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan. */ maximumElasticWorkerCount?: pulumi.Input; /** * Specifies the name of the App Service Plan component. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Can Apps assigned to this App Service Plan be scaled independently? If set to `false` apps assigned to this plan will scale to all instances of the plan. */ perSiteScaling?: pulumi.Input; /** * Is this App Service Plan `Reserved`. */ reserved?: pulumi.Input; /** * The name of the resource group in which to create the App Service Plan component. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * A `sku` block as documented below. */ sku: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Specifies if the App Service Plan should be Zone Redundant. Changing this forces a new resource to be created. * * > **NOTE:** Requires either `PremiumV2` or `PremiumV3` SKU and that at least 3 instances. For more information, please see the [App Service Team Blog](https://azure.github.io/AppService/2021/08/25/App-service-support-for-availability-zones.html). */ zoneRedundant?: pulumi.Input; }