import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing 3rd Generation (v3) App Service Environment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.appservice.getEnvironmentV3({ * name: "example-ASE", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Web` - 2023-01-01 */ export declare function getEnvironmentV3(args: GetEnvironmentV3Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEnvironmentV3. */ export interface GetEnvironmentV3Args { /** * The name of this v3 App Service Environment. */ name: string; /** * The name of the Resource Group where the v3 App Service Environment exists. */ resourceGroupName: string; } /** * A collection of values returned by getEnvironmentV3. */ export interface GetEnvironmentV3Result { /** * Are new Private Endpoint Connections allowed. */ readonly allowNewPrivateEndpointConnections: boolean; /** * A `clusterSetting` block as defined below. */ readonly clusterSettings: outputs.appservice.GetEnvironmentV3ClusterSetting[]; /** * The number of Dedicated Hosts used by this ASEv3. */ readonly dedicatedHostCount: number; /** * the DNS suffix for this App Service Environment V3. */ readonly dnsSuffix: string; /** * The external inbound IP addresses of the App Service Environment V3. */ readonly externalInboundIpAddresses: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An Inbound Network Dependencies block as defined below. */ readonly inboundNetworkDependencies: outputs.appservice.GetEnvironmentV3InboundNetworkDependency[]; /** * The internal inbound IP addresses of the App Service Environment V3. */ readonly internalInboundIpAddresses: string[]; /** * The Internal Load Balancing Mode of this ASEv3. */ readonly internalLoadBalancingMode: string; /** * The number of IP SSL addresses reserved for the App Service Environment V3. */ readonly ipSslAddressCount: number; /** * The list of Outbound IP Addresses of Linux based Apps in this App Service Environment V3. */ readonly linuxOutboundIpAddresses: string[]; /** * The location where the App Service Environment exists. */ readonly location: string; /** * The name of the Cluster Setting. */ readonly name: string; /** * Pricing tier for the front end instances. */ readonly pricingTier: string; readonly remoteDebuggingEnabled: boolean; readonly resourceGroupName: string; /** * The ID of the v3 App Service Environment Subnet. */ readonly subnetId: string; /** * A mapping of tags assigned to the v3 App Service Environment. */ readonly tags: { [key: string]: string; }; /** * Outbound addresses of Windows based Apps in this App Service Environment V3. */ readonly windowsOutboundIpAddresses: string[]; readonly zoneRedundant: boolean; } /** * Use this data source to access information about an existing 3rd Generation (v3) App Service Environment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.appservice.getEnvironmentV3({ * name: "example-ASE", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Web` - 2023-01-01 */ export declare function getEnvironmentV3Output(args: GetEnvironmentV3OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEnvironmentV3. */ export interface GetEnvironmentV3OutputArgs { /** * The name of this v3 App Service Environment. */ name: pulumi.Input; /** * The name of the Resource Group where the v3 App Service Environment exists. */ resourceGroupName: pulumi.Input; }