import * as pulumi from "@pulumi/pulumi"; /** * Manages an App Service Slot's Virtual Network Association (this is for the [Regional VNet Integration](https://docs.microsoft.com/azure/app-service/web-sites-integrate-with-vnet#regional-vnet-integration) which is still in preview). * * ## 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 exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-virtual-network", * addressSpaces: ["10.0.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "example-subnet", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["10.0.1.0/24"], * delegations: [{ * name: "example-delegation", * serviceDelegation: { * name: "Microsoft.Web/serverFarms", * actions: ["Microsoft.Network/virtualNetworks/subnets/action"], * }, * }], * }); * const examplePlan = new azure.appservice.Plan("example", { * name: "example-service-plan", * location: example.location, * resourceGroupName: example.name, * sku: { * tier: "Standard", * size: "S1", * }, * }); * const exampleAppService = new azure.appservice.AppService("example", { * name: "example-app-service", * location: example.location, * resourceGroupName: example.name, * appServicePlanId: examplePlan.id, * }); * const example_staging = new azure.appservice.Slot("example-staging", { * name: "staging", * appServiceName: exampleAppService.name, * location: example.location, * resourceGroupName: example.name, * appServicePlanId: examplePlan.id, * }); * const exampleSlotVirtualNetworkSwiftConnection = new azure.appservice.SlotVirtualNetworkSwiftConnection("example", { * slotName: example_staging.name, * appServiceId: exampleAppService.id, * subnetId: exampleSubnet.id, * }); * ``` * * ## Import * * App Service Slot Virtual Network Associations can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:appservice/slotVirtualNetworkSwiftConnection:SlotVirtualNetworkSwiftConnection myassociation /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/sites/instance1/slots/staging/config/virtualNetwork * ``` */ export declare class SlotVirtualNetworkSwiftConnection extends pulumi.CustomResource { /** * Get an existing SlotVirtualNetworkSwiftConnection 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?: SlotVirtualNetworkSwiftConnectionState, opts?: pulumi.CustomResourceOptions): SlotVirtualNetworkSwiftConnection; /** * Returns true if the given object is an instance of SlotVirtualNetworkSwiftConnection. 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 SlotVirtualNetworkSwiftConnection; /** * The ID of the App Service or Function App to associate to the VNet. Changing this forces a new resource to be created. */ readonly appServiceId: pulumi.Output; /** * The name of the App Service Slot or Function App Slot. Changing this forces a new resource to be created. */ readonly slotName: pulumi.Output; /** * The ID of the subnet the app service will be associated to (the subnet must have a `serviceDelegation` configured for `Microsoft.Web/serverFarms`). */ readonly subnetId: pulumi.Output; /** * Create a SlotVirtualNetworkSwiftConnection 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: SlotVirtualNetworkSwiftConnectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SlotVirtualNetworkSwiftConnection resources. */ export interface SlotVirtualNetworkSwiftConnectionState { /** * The ID of the App Service or Function App to associate to the VNet. Changing this forces a new resource to be created. */ appServiceId?: pulumi.Input; /** * The name of the App Service Slot or Function App Slot. Changing this forces a new resource to be created. */ slotName?: pulumi.Input; /** * The ID of the subnet the app service will be associated to (the subnet must have a `serviceDelegation` configured for `Microsoft.Web/serverFarms`). */ subnetId?: pulumi.Input; } /** * The set of arguments for constructing a SlotVirtualNetworkSwiftConnection resource. */ export interface SlotVirtualNetworkSwiftConnectionArgs { /** * The ID of the App Service or Function App to associate to the VNet. Changing this forces a new resource to be created. */ appServiceId: pulumi.Input; /** * The name of the App Service Slot or Function App Slot. Changing this forces a new resource to be created. */ slotName: pulumi.Input; /** * The ID of the subnet the app service will be associated to (the subnet must have a `serviceDelegation` configured for `Microsoft.Web/serverFarms`). */ subnetId: pulumi.Input; }