From be7247b9a0c56fcc4d91c365d809bd7e11caa985 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Tue, 21 Apr 2026 17:17:32 -0700 Subject: [PATCH 01/10] introducing project pitbull resource types --- .../AppService/ManagedTrafficConfig.tsp | 103 +++++++ .../AppService/ServerFarmSilo.tsp | 110 ++++++++ .../Microsoft.Web/AppService/SiteSilo.tsp | 108 ++++++++ .../Microsoft.Web/AppService/main.tsp | 8 + .../Microsoft.Web/AppService/models.tsp | 258 ++++++++++++++++++ .../examples/GetSiteSilo.json | 25 ++ 6 files changed, 612 insertions(+) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp new file mode 100644 index 000000000000..b71632a0b655 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp @@ -0,0 +1,103 @@ +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; +import "@typespec/rest"; +import "@typespec/versioning"; +import "./models.tsp"; +import "./Site.tsp"; + +using TypeSpec.Rest; +using Azure.ResourceManager; +using TypeSpec.Http; +using TypeSpec.OpenAPI; +using TypeSpec.Versioning; + +namespace Microsoft.Web; + +/** + * Managed traffic configuration for a site, controlling how traffic is routed across silos. + */ +@added(Versions.v2026_06_01_preview) +@parentResource(Site) +model ManagedTrafficConfigResource + is Azure.ResourceManager.ProxyResource { + ...ResourceNameParameter< + Resource = ManagedTrafficConfigResource, + KeyName = "configName", + SegmentName = "managedTrafficConfig", + NamePattern = "^default$" + >; + + /** Kind of resource. */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-invalid-envelope-property" "Existing pattern in Microsoft.Web" + kind?: string; +} + +@added(Versions.v2026_06_01_preview) +@armResourceOperations +interface ManagedTrafficConfigOps + extends Azure.ResourceManager.Legacy.LegacyOperations< + { + ...ApiVersionParameter; + ...SubscriptionIdParameter; + ...ResourceGroupParameter; + ...Azure.ResourceManager.Legacy.Provider; + + /** Name of the app. */ + @path + @segment("sites") + @key + name: string; + }, + { + /** Name of the managed traffic configuration. Must be "default". */ + @path + @segment("managedTrafficConfig") + @key + @pattern("^default$") + configName: string; + } + > {} + +@added(Versions.v2026_06_01_preview) +@tag("WebApps") +@armResourceOperations(#{ omitTags: true }) +interface ManagedTrafficConfigs { + /** + * Get the managed traffic configuration for a web app. + */ + @summary("Get the managed traffic configuration for a web app.") + getManagedTrafficConfig is ManagedTrafficConfigOps.Read< + ManagedTrafficConfigResource, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Create or update the managed traffic configuration for a web app. + */ + @summary("Create or update the managed traffic configuration for a web app.") + createOrUpdateManagedTrafficConfig is ManagedTrafficConfigOps.CreateOrUpdateSync< + ManagedTrafficConfigResource, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * List the managed traffic configurations for a web app. + */ + @summary("List the managed traffic configurations for a web app.") + listManagedTrafficConfigs is ManagedTrafficConfigOps.List< + ManagedTrafficConfigResource, + Response = ArmResponse, + OverrideErrorType = DefaultErrorResponse + >; +} + +@@doc(ManagedTrafficConfigResource.name, + "Name of the managed traffic configuration." +); +@@doc(ManagedTrafficConfigResource.properties, + "ManagedTrafficConfig resource specific properties" +); +@@doc(ManagedTrafficConfigs.createOrUpdateManagedTrafficConfig::parameters.resource, + "Traffic configuration properties." +); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp new file mode 100644 index 000000000000..d6296d42241f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp @@ -0,0 +1,110 @@ +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; +import "@typespec/rest"; +import "@typespec/versioning"; +import "./models.tsp"; +import "./AppServicePlan.tsp"; + +using TypeSpec.Rest; +using Azure.ResourceManager; +using TypeSpec.Http; +using TypeSpec.OpenAPI; +using TypeSpec.Versioning; + +namespace Microsoft.Web; + +/** + * Represents a silo of an App Service plan. + */ +@added(Versions.v2026_06_01_preview) +@parentResource(AppServicePlan) +model ServerFarmSilo + is Azure.ResourceManager.TrackedResource { + ...ResourceNameParameter< + Resource = ServerFarmSilo, + KeyName = "siloName", + SegmentName = "silos", + NamePattern = "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + >; + + /** Kind of resource. */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-invalid-envelope-property" "Existing pattern in Microsoft.Web" + kind?: string; +} + +@added(Versions.v2026_06_01_preview) +@armResourceOperations +interface ServerFarmSiloOps + extends Azure.ResourceManager.Legacy.LegacyOperations< + { + ...ApiVersionParameter; + ...SubscriptionIdParameter; + ...ResourceGroupParameter; + ...Azure.ResourceManager.Legacy.Provider; + + /** Name of the App Service plan. */ + @path + @segment("serverfarms") + @key + name: string; + }, + { + /** Name of the silo. */ + @path + @segment("silos") + @key + @pattern("^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$") + siloName: string; + } + > {} + +@added(Versions.v2026_06_01_preview) +@tag("AppServicePlans") +@armResourceOperations(#{ omitTags: true }) +interface ServerFarmSilos { + /** + * Get a specific silo for an App Service plan. + */ + @summary("Get a specific silo for an App Service plan.") + getServerFarmSilo is ServerFarmSiloOps.Read< + ServerFarmSilo, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Create or update an App Service plan silo. + */ + @summary("Create or update an App Service plan silo.") + createOrUpdateServerFarmSilo is ServerFarmSiloOps.CreateOrUpdateAsync< + ServerFarmSilo, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Delete an App Service plan silo. + */ + @summary("Delete an App Service plan silo.") + deleteServerFarmSilo is ServerFarmSiloOps.DeleteWithoutOkAsync< + ServerFarmSilo, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Get all silos for an App Service plan. + */ + @summary("Get all silos for an App Service plan.") + listServerFarmSilos is ServerFarmSiloOps.List< + ServerFarmSilo, + Response = ArmResponse, + OverrideErrorType = DefaultErrorResponse + >; +} + +@@doc(ServerFarmSilo.name, "Name of the silo."); +@@doc(ServerFarmSilo.properties, + "ServerFarmSilo resource specific properties" +); +@@doc(ServerFarmSilos.createOrUpdateServerFarmSilo::parameters.resource, + "Details of the silo." +); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp new file mode 100644 index 000000000000..f36a9e919941 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp @@ -0,0 +1,108 @@ +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; +import "@typespec/rest"; +import "@typespec/versioning"; +import "./models.tsp"; +import "./Site.tsp"; + +using TypeSpec.Rest; +using Azure.ResourceManager; +using TypeSpec.Http; +using TypeSpec.OpenAPI; +using TypeSpec.Versioning; + +namespace Microsoft.Web; + +/** + * Represents a silo of an App Service site. + */ +@added(Versions.v2026_06_01_preview) +@parentResource(Site) +model SiteSilo + is Azure.ResourceManager.TrackedResource { + ...ResourceNameParameter< + Resource = SiteSilo, + KeyName = "siloName", + SegmentName = "silos", + NamePattern = "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + >; + + /** Kind of resource. */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-invalid-envelope-property" "Existing pattern in Microsoft.Web" + kind?: string; +} + +@added(Versions.v2026_06_01_preview) +@armResourceOperations +interface SiteSiloOps + extends Azure.ResourceManager.Legacy.LegacyOperations< + { + ...ApiVersionParameter; + ...SubscriptionIdParameter; + ...ResourceGroupParameter; + ...Azure.ResourceManager.Legacy.Provider; + + /** Name of the app. */ + @path + @segment("sites") + @key + name: string; + }, + { + /** Name of the silo. */ + @path + @segment("silos") + @key + @pattern("^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$") + siloName: string; + } + > {} + +@added(Versions.v2026_06_01_preview) +@tag("WebApps") +@armResourceOperations(#{ omitTags: true }) +interface SiteSilos { + /** + * Get a specific silo for a web app. + */ + @summary("Get a specific silo for a web app.") + getSiteSilo is SiteSiloOps.Read< + SiteSilo, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Create or update a web app silo. + */ + @summary("Create or update a web app silo.") + createOrUpdateSiteSilo is SiteSiloOps.CreateOrUpdateAsync< + SiteSilo, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Delete a web app silo. + */ + @summary("Delete a web app silo.") + deleteSiteSilo is SiteSiloOps.DeleteWithoutOkAsync< + SiteSilo, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Get all silos for a web app. + */ + @summary("Get all silos for a web app.") + listSiteSilos is SiteSiloOps.List< + SiteSilo, + Response = ArmResponse, + OverrideErrorType = DefaultErrorResponse + >; +} + +@@doc(SiteSilo.name, "Name of the silo."); +@@doc(SiteSilo.properties, "SiteSilo resource specific properties"); +@@doc(SiteSilos.createOrUpdateSiteSilo::parameters.resource, + "Details of the silo." +); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp index 2379db4faba6..53065182cc43 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp @@ -83,6 +83,9 @@ import "./RequestHistory.tsp"; import "./WorkflowTrigger.tsp"; import "./WorkflowTriggerHistory.tsp"; import "./WorkflowVersion.tsp"; +import "./ServerFarmSilo.tsp"; +import "./SiteSilo.tsp"; +import "./ManagedTrafficConfig.tsp"; import "./routes.tsp"; using TypeSpec.Rest; @@ -116,6 +119,11 @@ enum Versions { * The 2026-03-01-preview API version. */ v2026_03_01_preview: "2026-03-01-preview", + + /** + * The 2026-06-01-preview API version. + */ + v2026_06_01_preview: "2026-06-01-preview", } @tag("Provider") diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp index 1c2df912a86d..d16c426ed85f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp @@ -15983,3 +15983,261 @@ model StorageMount { */ credentialsKeyVaultReference?: KeyVaultReferenceWithStatus; } + +/** + * Provisioning state for a silo resource. + */ +@added(Versions.v2026_06_01_preview) +union SiloProvisioningState { + string, + + /** Provisioning is in progress. */ + InProgress: "InProgress", + + /** Provisioning succeeded. */ + Succeeded: "Succeeded", + + /** Provisioning failed. */ + Failed: "Failed", + + /** Provisioning was canceled. */ + Canceled: "Canceled", +} + +/** + * Traffic routing mode for silos. + */ +@added(Versions.v2026_06_01_preview) +union SiloFailOverMode { + string, + + /** Active mode with weighted traffic routing. */ + Active: "Active", + + /** Passive mode with priority-based failover routing. */ + Passive: "Passive", + + /** Failover mode is unknown. */ + Unknown: "Unknown", +} + +/** + * Networking override configuration for a site silo. + */ +@added(Versions.v2026_06_01_preview) +model SiloNetworkingOverride { + /** + * Virtual network subnet resource ID override for the silo. + */ + vnetIntegrationOverride?: string; +} + +/** + * Properties of a site silo resource. + */ +@added(Versions.v2026_06_01_preview) +model SiteSiloProperties { + /** + * ARM location of the silo. + */ + siloLocation?: string; + + /** + * Name of the primary site. + */ + primarySiteName?: string; + + /** + * Region of the primary site. + */ + primaryLocation: string; + + /** + * Status of the silo's Traffic Manager endpoint. Values: "Enabled" or "Disabled". + */ + endpointStatus?: string; + + /** + * Traffic mode for the silo's Traffic Manager profile. + * Input-only on first silo create. Not returned on GET. + */ + trafficMode?: SiloFailOverMode; + + /** + * Networking overrides for the silo, including VNet integration. + */ + networkingOverride?: SiloNetworkingOverride; + + /** + * Application setting overrides for the silo. + */ + appSettingsOverrides?: NameValuePair[]; + + /** + * Provisioning state of the silo. + */ + @visibility(Lifecycle.Read) + provisioningState?: SiloProvisioningState; + + /** + * Whether the silo should follow the last known good revision. + */ + followLkg?: boolean; + + /** + * Short identifier of the revision currently applied to this silo (read-only). + */ + @visibility(Lifecycle.Read) + revisionId?: string; + + /** + * Default host name of the silo site (read-only). + */ + @visibility(Lifecycle.Read) + defaultHostName?: string; + + /** + * Global Traffic Manager hostname for the site group (read-only). + */ + @visibility(Lifecycle.Read) + globalHostName?: string; + + /** + * Health monitoring status of the silo's Traffic Manager endpoint (read-only). + */ + @visibility(Lifecycle.Read) + monitorStatus?: string; + + /** + * Time when the silo was created. + */ + @visibility(Lifecycle.Read) + createdTime?: utcDateTime; + + /** + * Time when the silo was last modified. + */ + @visibility(Lifecycle.Read) + lastModifiedTime?: utcDateTime; +} + +/** + * Collection of site silo resources. + */ +@added(Versions.v2026_06_01_preview) +model SiteSiloCollection is Azure.Core.Page; + +/** + * Properties of an App Service plan silo resource. + */ +@added(Versions.v2026_06_01_preview) +model ServerFarmSiloProperties { + /** + * ARM location of the App Service plan silo. + */ + siloLocation?: string; + + /** + * Name of the primary App Service plan. + */ + primaryServerFarmName?: string; + + /** + * Region of the primary App Service plan. + */ + primaryLocation: string; + + /** + * Instance number override for the silo. + */ + instanceNumberOverride?: int32; + + /** + * Zone redundancy override for the silo. + */ + zoneRedundantOverride?: boolean; + + /** + * Provisioning state of the silo. + */ + @visibility(Lifecycle.Read) + provisioningState?: SiloProvisioningState; + + /** + * Time when the silo was created. + */ + @visibility(Lifecycle.Read) + createdTime?: utcDateTime; + + /** + * Time when the silo was last modified. + */ + @visibility(Lifecycle.Read) + lastModifiedTime?: utcDateTime; +} + +/** + * Collection of App Service plan silo resources. + */ +@added(Versions.v2026_06_01_preview) +model ServerFarmSiloCollection is Azure.Core.Page; + +/** + * Traffic configuration for a single endpoint (region) within a ManagedTrafficConfig. + */ +@added(Versions.v2026_06_01_preview) +model EndpointTrafficConfig { + /** + * Normalized Azure region name (e.g., "eastus", "westus"). + */ + @minLength(1) + region: string; + + /** + * Priority of the endpoint (1-1000). Lower values receive traffic first in Priority routing. + */ + @minValue(1) + @maxValue(1000) + priority?: int32; + + /** + * Weight of the endpoint (1-1000). Higher values receive proportionally more traffic in Weighted routing. + */ + @minValue(1) + @maxValue(1000) + weight?: int32; + + /** + * Whether the weight was auto-computed from the silo's worker count. + */ + isWeightAutoComputed?: boolean; +} + +/** + * Properties of a managed traffic configuration resource. + */ +@added(Versions.v2026_06_01_preview) +model ManagedTrafficConfigProperties { + /** + * Traffic routing mode: Active (weighted) or Passive (priority-based failover). + */ + trafficMode?: SiloFailOverMode; + + /** + * Per-region endpoint configurations controlling weight and priority. + */ + @identifiers(#[]) + endpoints?: EndpointTrafficConfig[]; + + /** + * Provisioning state of the managed traffic configuration. + */ + @visibility(Lifecycle.Read) + provisioningState?: SiloProvisioningState; +} + +/** + * Collection of managed traffic configuration resources. + */ +@added(Versions.v2026_06_01_preview) +model ManagedTrafficConfigCollection is Azure.Core.Page; diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json new file mode 100644 index 000000000000..acb65ad7ac63 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsite", + "siloName": "eastus-silo", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primarySiteName": "testsite", + "primaryLocation": "westus", + "provisioningState": "Succeeded" + } + } + } + } +} From 36cb02e07227b6290fe6ad69927fce460ee11d70 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Tue, 21 Apr 2026 22:36:22 -0700 Subject: [PATCH 02/10] Add ServerFarmSilo, SiteSilo, ManagedTrafficConfig, LastKnownGood resource types for 2026-06-01-preview --- .../AppService/LastKnownGood.tsp | 93 + .../AppService/ManagedTrafficConfig.tsp | 10 - .../Microsoft.Web/AppService/main.tsp | 1 + .../Microsoft.Web/AppService/models.tsp | 18 + .../examples/AIGateways_CreateOrUpdate.json | 47 + .../examples/AIGateways_Delete.json | 14 + .../examples/AIGateways_Get.json | 26 + .../AIGateways_ListByResourceGroup.json | 29 + .../AIGateways_ListBySubscription.json | 28 + .../examples/AIGateways_Patch.json | 31 + .../examples/AnalyzeCustomHostName.json | 34 + .../examples/AnalyzeCustomHostNameSlot.json | 35 + ...roveOrRejectPrivateEndpointConnection.json | 61 + .../AppServiceEnvironments_ChangeVnet.json | 30 + ...AppServiceEnvironments_CreateOrUpdate.json | 187 + ...ironments_CreateOrUpdateMultiRolePool.json | 26 + ...dateMultiRolePool_UpdateMultiRolePool.json | 26 + ...Environments_CreateOrUpdateWorkerPool.json | 27 + ...teWorkerPool_CreateOrUpdateWorkerPool.json | 27 + .../AppServiceEnvironments_Delete.json | 21 + ...ments_DeletePrivateEndpointConnection.json | 28 + .../examples/AppServiceEnvironments_Get.json | 67 + ...ments_GetAseV3NetworkingConfiguration.json | 38 + ...erviceEnvironments_GetDiagnosticsItem.json | 19 + ...pServiceEnvironments_GetMultiRolePool.json | 35 + ...ronments_GetPrivateEndpointConnection.json | 33 + ...ents_GetPrivateEndpointConnectionList.json | 36 + ...eEnvironments_GetPrivateLinkResources.json | 18 + .../AppServiceEnvironments_GetVipInfo.json | 43 + .../AppServiceEnvironments_GetWorkerPool.json | 28 + .../examples/AppServiceEnvironments_List.json | 69 + ...rviceEnvironments_ListAppServicePlans.json | 63 + ...rviceEnvironments_ListByResourceGroup.json | 70 + ...AppServiceEnvironments_ListCapacities.json | 59 + ...ppServiceEnvironments_ListDiagnostics.json | 20 + ...nments_ListMultiRoleMetricDefinitions.json | 44 + ...ultiRolePoolInstanceMetricDefinitions.json | 45 + ...iceEnvironments_ListMultiRolePoolSkus.json | 160 + ...erviceEnvironments_ListMultiRolePools.json | 40 + ...rviceEnvironments_ListMultiRoleUsages.json | 19 + ...AppServiceEnvironments_ListOperations.json | 16 + .../AppServiceEnvironments_ListUsages.json | 30 + .../AppServiceEnvironments_ListWebApps.json | 84 + ...nments_ListWebWorkerMetricDefinitions.json | 40 + ...rviceEnvironments_ListWebWorkerUsages.json | 20 + ...stWorkerPoolInstanceMetricDefinitions.json | 41 + ...erviceEnvironments_ListWorkerPoolSkus.json | 91 + ...ppServiceEnvironments_ListWorkerPools.json | 56 + .../AppServiceEnvironments_Reboot.json | 15 + .../AppServiceEnvironments_Resume.json | 27 + .../AppServiceEnvironments_Suspend.json | 27 + ...ents_TestUpgradeAvailableNotification.json | 15 + .../AppServiceEnvironments_Update.json | 185 + ...ents_UpdateAseNetworkingConfiguration.json | 44 + .../AppServiceEnvironments_Upgrade.json | 17 + .../examples/ApplySlotConfig.json | 19 + ...veRejectSitePrivateEndpointConnection.json | 62 + ...jectSitePrivateEndpointConnectionSlot.json | 63 + ...PrivateEndpointConnection_StaticSites.json | 62 + .../examples/BackupWebApp.json | 76 + .../examples/CloneWebApp.json | 265 + .../examples/CloneWebAppSlot.json | 266 + .../CreateOrUpdateAppServicePlan.json | 84 + .../examples/CreateOrUpdateCertificate.json | 41 + ...ateOrUpdateFunctionAppFlexConsumption.json | 353 + ...FunctionAppFlexConsumptionWithDetails.json | 382 + .../CreateOrUpdateManagedTrafficConfig.json | 53 + .../CreateOrUpdateServerFarmSilo.json | 55 + .../CreateOrUpdateSiteCertificate.json | 62 + .../CreateOrUpdateSiteCertificateSlot.json | 63 + .../examples/CreateOrUpdateSiteSilo.json | 85 + .../examples/CreateOrUpdateStaticSite.json | 83 + .../CreateOrUpdateStaticSiteAppSettings.json | 28 + .../CreateOrUpdateStaticSiteBasicAuth.json | 33 + ...ateOrUpdateStaticSiteBuildAppSettings.json | 29 + ...dateStaticSiteBuildDatabaseConnection.json | 35 + ...ateStaticSiteBuildFunctionAppSettings.json | 29 + .../CreateOrUpdateStaticSiteCustomDomain.json | 37 + ...eOrUpdateStaticSiteDatabaseConnection.json | 34 + ...OrUpdateStaticSiteFunctionAppSettings.json | 28 + .../examples/CreateOrUpdateWebApp.json | 264 + .../examples/CreateOrUpdateWebAppSlot.json | 255 + .../CreateUserRolesInvitationLink.json | 30 + .../examples/DeleteAppServicePlan.json | 14 + ...DeleteAseCustomDnsSuffixConfiguration.json | 20 + .../examples/DeleteCertificate.json | 14 + .../DeleteDeployWorkflowArtifacts.json | 19 + .../examples/DeleteServerFarmSilo.json | 15 + .../examples/DeleteSiteCertificate.json | 15 + .../examples/DeleteSiteCertificateSlot.json | 16 + .../DeleteSitePrivateEndpointConnection.json | 25 + ...leteSitePrivateEndpointConnectionSlot.json | 26 + ...PrivateEndpointConnection_StaticSites.json | 25 + .../examples/DeleteSiteSilo.json | 15 + .../examples/DeleteStaticSite.json | 18 + .../examples/DeleteStaticSiteBuild.json | 20 + ...leteStaticSiteBuildDatabaseConnection.json | 16 + .../DeleteStaticSiteCustomDomain.json | 19 + .../DeleteStaticSiteDatabaseConnection.json | 15 + .../examples/DeleteStaticSiteUser.json | 15 + .../examples/DeleteWebApp.json | 15 + .../examples/DeleteWebAppBackup.json | 15 + .../examples/DeleteWebAppSlot.json | 16 + .../examples/DetachStaticSite.json | 18 + ...UserProvidedFunctionAppFromStaticSite.json | 15 + ...rovidedFunctionAppFromStaticSiteBuild.json | 16 + .../Diagnostics_ExecuteSiteAnalysis.json | 128 + .../Diagnostics_ExecuteSiteAnalysisSlot.json | 128 + ...gnostics_ExecuteSiteAnalysisSlot_Slot.json | 128 + .../Diagnostics_ExecuteSiteAnalysis_Slot.json | 128 + .../Diagnostics_ExecuteSiteDetector.json | 32 + .../Diagnostics_ExecuteSiteDetectorSlot.json | 32 + ...gnostics_ExecuteSiteDetectorSlot_Slot.json | 32 + .../Diagnostics_ExecuteSiteDetector_Slot.json | 32 + ...GetHostingEnvironmentDetectorResponse.json | 135 + .../examples/Diagnostics_GetSiteAnalysis.json | 24 + .../Diagnostics_GetSiteAnalysisSlot.json | 24 + .../Diagnostics_GetSiteAnalysisSlot_Slot.json | 24 + .../Diagnostics_GetSiteAnalysis_Slot.json | 24 + .../examples/Diagnostics_GetSiteDetector.json | 27 + .../Diagnostics_GetSiteDetectorResponse.json | 136 + ...agnostics_GetSiteDetectorResponseSlot.json | 136 + ...tics_GetSiteDetectorResponseSlot_Slot.json | 136 + ...gnostics_GetSiteDetectorResponse_Slot.json | 136 + .../Diagnostics_GetSiteDetectorSlot.json | 27 + .../Diagnostics_GetSiteDetectorSlot_Slot.json | 27 + .../Diagnostics_GetSiteDetector_Slot.json | 27 + ...Diagnostics_GetSiteDiagnosticCategory.json | 23 + ...nostics_GetSiteDiagnosticCategorySlot.json | 23 + ...cs_GetSiteDiagnosticCategorySlot_Slot.json | 23 + ...ostics_GetSiteDiagnosticCategory_Slot.json | 23 + ...stHostingEnvironmentDetectorResponses.json | 29 + .../Diagnostics_ListSiteAnalyses.json | 55 + .../Diagnostics_ListSiteAnalysesSlot.json | 55 + ...Diagnostics_ListSiteAnalysesSlot_Slot.json | 55 + .../Diagnostics_ListSiteAnalyses_Slot.json | 55 + ...Diagnostics_ListSiteDetectorResponses.json | 30 + ...nostics_ListSiteDetectorResponsesSlot.json | 30 + ...cs_ListSiteDetectorResponsesSlot_Slot.json | 30 + ...ostics_ListSiteDetectorResponses_Slot.json | 30 + .../Diagnostics_ListSiteDetectors.json | 200 + .../Diagnostics_ListSiteDetectorsSlot.json | 60 + ...iagnostics_ListSiteDetectorsSlot_Slot.json | 60 + .../Diagnostics_ListSiteDetectors_Slot.json | 200 + ...gnostics_ListSiteDiagnosticCategories.json | 26 + ...tics_ListSiteDiagnosticCategoriesSlot.json | 26 + ...ListSiteDiagnosticCategoriesSlot_Slot.json | 26 + ...ics_ListSiteDiagnosticCategories_Slot.json | 26 + .../GenerateStaticSiteWorkflowPreview.json | 31 + .../examples/GetAllStaticSites.json | 40 + .../examples/GetAppServicePlan.json | 42 + .../GetAseCustomDnsSuffixConfiguration.json | 27 + .../GetAuthSettingsV2WithoutSecrets.json | 88 + .../examples/GetCertificate.json | 32 + .../examples/GetDeletedWebApp.json | 29 + .../examples/GetDeletedWebAppByLocation.json | 30 + .../examples/GetDeletedWebAppSnapshots.json | 24 + .../examples/GetFunctionAppStacks.json | 781 + .../GetFunctionAppStacksForLocation.json | 788 + ...etInboundNetworkDependenciesEndpoints.json | 81 + .../GetKeyVaultReferencesForAppSetting.json | 24 + ...etKeyVaultReferencesForAppSettingSlot.json | 25 + .../GetKeyVaultReferencesForAppSettings.json | 35 + ...tKeyVaultReferencesForAppSettingsSlot.json | 36 + .../GetLinkedBackendForStaticSite.json | 27 + .../GetLinkedBackendForStaticSiteBuild.json | 28 + .../GetLinkedBackendsForStaticSite.json | 31 + .../GetLinkedBackendsForStaticSiteBuild.json | 33 + .../examples/GetManagedTrafficConfig.json | 36 + ...tOutboundNetworkDependenciesEndpoints.json | 804 + .../GetPublishingCredentialsPolicy.json | 21 + .../GetPublishingCredentialsPolicySlot.json | 22 + ...gCredentialsPolicySlot_FtpAllowedSlot.json | 22 + ...ishingCredentialsPolicy_GetFtpAllowed.json | 21 + .../GetResourceHealthMetadataBySite.json | 25 + .../GetResourceHealthMetadataBySite_Slot.json | 25 + .../examples/GetServerFarmSilo.json | 27 + .../examples/GetSiteCertificate.json | 33 + .../examples/GetSiteCertificateSlot.json | 34 + .../examples/GetSiteConfig.json | 72 + .../examples/GetSiteDeploymentStatus.json | 47 + .../examples/GetSiteDeploymentStatusSlot.json | 48 + .../examples/GetSiteInstanceInfo.json | 32 + .../examples/GetSiteInstanceInfo_Slot.json | 32 + .../GetSitePrivateEndpointConnection.json | 30 + .../GetSitePrivateEndpointConnectionList.json | 34 + .../GetSitePrivateEndpointConnectionSlot.json | 31 + ...PrivateEndpointConnection_StaticSites.json | 30 + .../examples/GetSitePrivateLinkResources.json | 33 + .../GetSitePrivateLinkResourcesSlot.json | 34 + .../GetSitePrivateLinkResources_WebApps.json | 33 + .../examples/GetSiteSilo.json | 4 +- .../examples/GetStaticSite.json | 45 + .../examples/GetStaticSiteBasicAuth.json | 26 + .../examples/GetStaticSiteBuild.json | 37 + .../GetStaticSiteBuildDatabaseConnection.json | 27 + ...iteBuildDatabaseConnectionWithDetails.json | 40 + ...GetStaticSiteBuildDatabaseConnections.json | 31 + ...teBuildDatabaseConnectionsWithDetails.json | 44 + .../examples/GetStaticSiteBuilds.json | 55 + .../examples/GetStaticSiteCustomDomain.json | 22 + .../examples/GetStaticSiteCustomDomains.json | 27 + .../GetStaticSiteDatabaseConnection.json | 26 + ...aticSiteDatabaseConnectionWithDetails.json | 39 + .../GetStaticSiteDatabaseConnections.json | 30 + ...ticSiteDatabaseConnectionsWithDetails.json | 43 + .../examples/GetStaticSites.json | 42 + ...ubscriptionOperationWithAsyncResponse.json | 13 + .../examples/GetUsagesInLocation.json | 29 + ...tUserProvidedFunctionAppForStaticSite.json | 26 + ...ProvidedFunctionAppForStaticSiteBuild.json | 27 + ...UserProvidedFunctionAppsForStaticSite.json | 30 + ...rovidedFunctionAppsForStaticSiteBuild.json | 31 + .../examples/GetWebApp.json | 135 + .../examples/GetWebAppBackup.json | 49 + .../examples/GetWebAppBackupWithSecrets.json | 77 + .../examples/GetWebAppSlot.json | 131 + .../examples/GetWebAppStacks.json | 2917 + .../examples/GetWebAppStacksForLocation.json | 2925 + .../GetWebSiteNetworkTraceOperation.json | 37 + .../GetWebSiteNetworkTraceOperation_Slot.json | 37 + ...etWebSiteNetworkTraceOperation_SlotV2.json | 37 + .../GetWebSiteNetworkTraceOperation_V2.json | 37 + .../examples/GetWebSiteNetworkTraces.json | 24 + ...eNetworkTraces_GetNetworkTracesSlotV2.json | 24 + .../GetWebSiteNetworkTraces_Slot.json | 24 + .../GetWebSiteNetworkTraces_SlotV2.json | 24 + .../examples/GetWorkflow.json | 61 + .../examples/GetWorkflow_Slot.json | 61 + .../KubeEnvironments_CreateOrUpdate.json | 70 + .../examples/KubeEnvironments_Delete.json | 25 + .../examples/KubeEnvironments_Get.json | 40 + .../KubeEnvironments_ListByResourceGroup.json | 58 + .../KubeEnvironments_ListBySubscription.json | 50 + .../examples/KubeEnvironments_Update.json | 69 + .../examples/LinkBackendToStaticSite.json | 33 + .../LinkBackendToStaticSiteBuild.json | 34 + .../examples/ListAppServicePlans.json | 69 + .../ListAppServicePlansByResourceGroup.json | 70 + .../examples/ListAppSettings.json | 25 + .../examples/ListAseRegions.json | 56 + .../examples/ListAuthSettings.json | 34 + .../examples/ListAuthSettingsV2.json | 88 + .../examples/ListCertificates.json | 51 + .../ListCertificatesByResourceGroup.json | 52 + .../examples/ListCustomHostNameSites.json | 52 + .../ListCustomSpecificHostNameSites.json | 39 + .../ListDeletedWebAppsByLocation.json | 34 + .../examples/ListManagedTrafficConfigs.json | 39 + .../examples/ListOperations.json | 5843 ++ .../ListPublishingCredentialsPolicies.json | 35 + ...ListPublishingCredentialsPoliciesSlot.json | 36 + ...ResourceHealthMetadataByResourceGroup.json | 26 + .../ListResourceHealthMetadataBySite.json | 28 + ...ListResourceHealthMetadataBySite_Slot.json | 28 + ...tResourceHealthMetadataBySubscription.json | 25 + .../examples/ListServerFarmSilos.json | 30 + .../examples/ListSiteBackupsSlot.json | 30 + .../ListSiteCertificatesByResourceGroup.json | 53 + ...stSiteCertificatesByResourceGroupSlot.json | 54 + .../examples/ListSiteDeploymentStatus.json | 19 + .../ListSiteDeploymentStatusSlot.json | 20 + .../examples/ListSiteSilos.json | 30 + .../examples/ListSlotBackups.json | 30 + .../examples/ListStaticSiteAppSettings.json | 21 + .../examples/ListStaticSiteBasicAuth.json | 28 + .../ListStaticSiteBuildAppSettings.json | 22 + ...istStaticSiteBuildFunctionAppSettings.json | 22 + .../ListStaticSiteBuildFunctions.json | 28 + .../ListStaticSiteConfiguredRoles.json | 22 + .../ListStaticSiteFunctionAppSettings.json | 21 + .../examples/ListStaticSiteFunctions.json | 27 + .../examples/ListStaticSiteSecrets.json | 20 + .../examples/ListStaticSiteUsers.json | 30 + .../examples/ListWebAppBackups.json | 52 + .../examples/ListWebAppConfigurations.json | 76 + .../examples/ListWebAppSlots.json | 245 + .../examples/ListWebApps.json | 253 + .../examples/ListWebAppsByResourceGroup.json | 254 + .../examples/ListWorkflows.json | 51 + ...ListWorkflowsConfigurationConnections.json | 48 + ...orkflowsConfigurationConnections_Slot.json | 48 + .../examples/ListWorkflows_Slot.json | 51 + .../examples/PatchAppServicePlan.json | 74 + .../examples/PatchCertificate.json | 38 + .../examples/PatchSiteCertificate.json | 39 + .../examples/PatchSiteCertificateSlot.json | 40 + .../examples/PatchStaticSite.json | 67 + ...atchStaticSiteBuildDatabaseConnection.json | 30 + .../PatchStaticSiteDatabaseConnection.json | 29 + .../examples/PostDeployWorkflowArtifacts.json | 59 + .../PostDeployWorkflowArtifactsSlot.json | 60 + ...UserProvidedFunctionAppWithStaticSite.json | 48 + ...rovidedFunctionAppWithStaticSiteBuild.json | 49 + .../examples/ResetStaticSiteApiKey.json | 19 + .../examples/RestoreWebAppBackup.json | 40 + .../StartWebSiteNetworkTraceOperation.json | 37 + ...tartWebSiteNetworkTraceOperation_Slot.json | 37 + ...tworkTraceOperation_StartNetworkTrace.json | 37 + ...kTraceOperation_StartNetworkTraceSlot.json | 37 + .../examples/StaticSiteBuildZipDeploy.json | 28 + .../examples/StaticSiteZipDeploy.json | 27 + .../examples/StopWebSiteNetworkTrace.json | 15 + .../StopWebSiteNetworkTrace_Slot.json | 15 + ...pWebSiteNetworkTrace_StopNetworkTrace.json | 15 + ...SiteNetworkTrace_StopNetworkTraceSlot.json | 15 + .../examples/UnlinkBackendFromStaticSite.json | 16 + .../UnlinkBackendFromStaticSiteBuild.json | 17 + .../examples/UpdateAppSettings.json | 31 + ...UpdateAseCustomDnsSuffixConfiguration.json | 34 + .../examples/UpdateAuthSettings.json | 49 + .../examples/UpdateAuthSettingsV2.json | 157 + .../examples/UpdateAzureStorageAccounts.json | 41 + .../examples/UpdateMachineKey.json | 16 + .../UpdatePublishingCredentialsPolicy.json | 26 + ...UpdatePublishingCredentialsPolicySlot.json | 27 + ...ntialsPolicySlot_UpdateFtpAllowedSlot.json | 27 + ...ingCredentialsPolicy_UpdateFtpAllowed.json | 27 + .../examples/UpdateSiteConfig.json | 125 + .../examples/UpdateStaticSiteUser.json | 30 + .../examples/UpdateWebApp.json | 261 + .../examples/UpdateWebAppSlot.json | 252 + .../ValidateLinkedBackendForStaticSite.json | 25 + ...lidateLinkedBackendForStaticSiteBuild.json | 26 + .../ValidateStaticSiteCustomDomain.json | 22 + .../VerifyHostingEnvironmentVnet.json | 26 + ...ActionRepetitionsRequestHistories_Get.json | 73 + ...ctionRepetitionsRequestHistories_List.json | 76 + .../WorkflowRunActionRepetitions_Get.json | 59 + .../WorkflowRunActionRepetitions_List.json | 103 + ...ctionRepetitions_ListExpressionTraces.json | 27 + ...WorkflowRunActionScopeRepetitions_Get.json | 40 + ...orkflowRunActionScopeRepetitions_List.json | 65 + .../examples/WorkflowRunActions_Get.json | 40 + .../examples/WorkflowRunActions_List.json | 43 + ...rkflowRunActions_ListExpressionTraces.json | 27 + .../examples/WorkflowRuns_Cancel.json | 15 + .../examples/WorkflowRuns_Get.json | 47 + .../examples/WorkflowRuns_List.json | 50 + .../WorkflowTriggerHistories_Get.json | 38 + .../WorkflowTriggerHistories_List.json | 41 + .../WorkflowTriggerHistories_Resubmit.json | 20 + .../examples/WorkflowTriggers_Get.json | 32 + .../WorkflowTriggers_GetSchemaJson.json | 20 + .../examples/WorkflowTriggers_List.json | 35 + .../WorkflowTriggers_ListCallbackUrl.json | 27 + .../examples/WorkflowTriggers_Run.json | 20 + .../examples/WorkflowVersions_Get.json | 45 + .../examples/WorkflowVersions_List.json | 48 + .../Workflows_RegenerateAccessKey.json | 17 + .../examples/Workflows_Validate.json | 28 + .../preview/2026-06-01-preview/openapi.json | 59596 ++++++++++++++++ 352 files changed, 90656 insertions(+), 11 deletions(-) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp new file mode 100644 index 000000000000..1dd6632f5769 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp @@ -0,0 +1,93 @@ +import "@azure-tools/typespec-azure-core"; +import "@azure-tools/typespec-azure-resource-manager"; +import "@typespec/openapi"; +import "@typespec/rest"; +import "@typespec/versioning"; +import "./models.tsp"; +import "./Site.tsp"; + +using TypeSpec.Rest; +using Azure.ResourceManager; +using TypeSpec.Http; +using TypeSpec.OpenAPI; +using TypeSpec.Versioning; + +namespace Microsoft.Web; + +/** + * Represents the Last Known Good (LKG) revision status for a site. + */ +@added(Versions.v2026_06_01_preview) +@parentResource(Site) +model LastKnownGoodResource + is Azure.ResourceManager.ProxyResource { + ...ResourceNameParameter< + Resource = LastKnownGoodResource, + KeyName = "lkgName", + SegmentName = "lastKnownGood", + NamePattern = "^default$" + >; + + /** Kind of resource. */ + #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-invalid-envelope-property" "Existing pattern in Microsoft.Web" + kind?: string; +} + +@added(Versions.v2026_06_01_preview) +@armResourceOperations +interface LastKnownGoodOps + extends Azure.ResourceManager.Legacy.LegacyOperations< + { + ...ApiVersionParameter; + ...SubscriptionIdParameter; + ...ResourceGroupParameter; + ...Azure.ResourceManager.Legacy.Provider; + + /** Name of the app. */ + @path + @segment("sites") + @key + name: string; + }, + { + /** Name of the Last Known Good resource. Must be "default". */ + @path + @segment("lastKnownGood") + @key + @pattern("^default$") + lkgName: string; + } + > {} + +@added(Versions.v2026_06_01_preview) +@tag("WebApps") +@armResourceOperations(#{ omitTags: true }) +interface LastKnownGoods { + /** + * Get the current Last Known Good revision for a web app. + */ + @summary("Get the current Last Known Good revision for a web app.") + getLastKnownGood is LastKnownGoodOps.Read< + LastKnownGoodResource, + OverrideErrorType = DefaultErrorResponse + >; + + /** + * Mark the current site state as Last Known Good. + */ + @summary("Mark the current site state as Last Known Good.") + @action("mark") + markLastKnownGood is LastKnownGoodOps.ActionSync< + LastKnownGoodResource, + void, + ArmResponse, + OverrideErrorType = DefaultErrorResponse + >; +} + +@@doc(LastKnownGoodResource.name, + "Name of the Last Known Good resource." +); +@@doc(LastKnownGoodResource.properties, + "LastKnownGood resource specific properties" +); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp index b71632a0b655..ae10c79aa258 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp @@ -80,16 +80,6 @@ interface ManagedTrafficConfigs { ManagedTrafficConfigResource, OverrideErrorType = DefaultErrorResponse >; - - /** - * List the managed traffic configurations for a web app. - */ - @summary("List the managed traffic configurations for a web app.") - listManagedTrafficConfigs is ManagedTrafficConfigOps.List< - ManagedTrafficConfigResource, - Response = ArmResponse, - OverrideErrorType = DefaultErrorResponse - >; } @@doc(ManagedTrafficConfigResource.name, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp index 53065182cc43..21ab0796d2e6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/main.tsp @@ -86,6 +86,7 @@ import "./WorkflowVersion.tsp"; import "./ServerFarmSilo.tsp"; import "./SiteSilo.tsp"; import "./ManagedTrafficConfig.tsp"; +import "./LastKnownGood.tsp"; import "./routes.tsp"; using TypeSpec.Rest; diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp index d16c426ed85f..75153e1b51e2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp @@ -16241,3 +16241,21 @@ model ManagedTrafficConfigProperties { */ @added(Versions.v2026_06_01_preview) model ManagedTrafficConfigCollection is Azure.Core.Page; + +/** + * Properties of the Last Known Good revision for a site. + */ +@added(Versions.v2026_06_01_preview) +#suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-provisioning-state" "LastKnownGood is a simple read-only data model, not a provisionable resource" +model LastKnownGoodProperties { + /** + * Name of the primary site. + */ + siteName?: string; + + /** + * Time when the LKG revision was created. + */ + @visibility(Lifecycle.Read) + createdTime?: utcDateTime; +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json new file mode 100644 index 000000000000..8427da59c935 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json @@ -0,0 +1,47 @@ +{ + "operationId": "AiGateways_CreateOrUpdate", + "title": "CreateOrUpdateAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-06-01-preview", + "name": "aigateway1", + "resource": { + "properties": {}, + "location": "CentralUS", + "tags": { + "key1": "Value1" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json new file mode 100644 index 000000000000..5307572af8dd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json @@ -0,0 +1,14 @@ +{ + "operationId": "AiGateways_Delete", + "title": "DeleteAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-06-01-preview", + "name": "aigateway1" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json new file mode 100644 index 000000000000..e2b685611485 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json @@ -0,0 +1,26 @@ +{ + "operationId": "AiGateways_Get", + "title": "GetAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-06-01-preview", + "name": "aigateway1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json new file mode 100644 index 000000000000..7324c866a2c1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json @@ -0,0 +1,29 @@ +{ + "operationId": "AiGateways_ListByResourceGroup", + "title": "ListAiGatewaysByResourceGroup", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json new file mode 100644 index 000000000000..f2c519bcb6ff --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json @@ -0,0 +1,28 @@ +{ + "operationId": "AiGateways_ListBySubscription", + "title": "ListAiGatewaysBySubscription", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json new file mode 100644 index 000000000000..b2adc6e80d4b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json @@ -0,0 +1,31 @@ +{ + "operationId": "AiGateways_Patch", + "title": "PatchAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-06-01-preview", + "name": "aigateway1", + "properties": { + "tags": { + "key1": "Value2" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value2" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json new file mode 100644 index 000000000000..28d409a04254 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "properties": { + "cNameRecords": [ + "siteog.azurewebsites.net" + ], + "conflictingAppResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/siteog", + "customDomainVerificationFailureInfo": { + "code": "07198", + "message": "Custom domain verification failed on conflicting CNAMEs." + }, + "customDomainVerificationTest": "Passed", + "hasConflictAcrossSubscription": true, + "hasConflictOnScaleUnit": false, + "isHostnameAlreadyVerified": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_AnalyzeCustomHostname", + "title": "Analyze custom hostname for webapp." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json new file mode 100644 index 000000000000..6ad17beb6d3f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/stagings", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "properties": { + "cNameRecords": [ + "siteog.azurewebsites.net" + ], + "conflictingAppResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/siteog/slots/qa", + "customDomainVerificationFailureInfo": { + "code": "07198", + "message": "Custom domain verification failed on conflicting CNAMEs." + }, + "customDomainVerificationTest": "Passed", + "hasConflictAcrossSubscription": true, + "hasConflictOnScaleUnit": false, + "isHostnameAlreadyVerified": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_AnalyzeCustomHostnameSlot", + "title": "Analyze custom hostname for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json new file mode 100644 index 000000000000..acc1d63cc76b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by johndoe@company.com", + "status": "Approved" + } + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by johndoe@company.com", + "actionsRequired": "None", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by johndoe@company.com", + "actionsRequired": "None", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection", + "title": "Approves or rejects a private endpoint connection." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json new file mode 100644 index 000000000000..3c960d1041f8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "vnetInfo": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default" + } + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + }, + "202": { + "body": { + "value": [] + }, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + } + }, + "operationId": "AppServiceEnvironments_ChangeVnet", + "title": "Move an App Service Environment to a different VNET." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json new file mode 100644 index 000000000000..d1d3fe9a3db0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json @@ -0,0 +1,187 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "hostingEnvironmentEnvelope": { + "kind": "Asev3", + "location": "South Central US", + "properties": { + "virtualNetwork": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated" + } + } + }, + "location": "South Central US", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "201": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "202": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_CreateOrUpdate", + "title": "Create or update an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json new file mode 100644 index 000000000000..d5fad44ec5c9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "multiRolePoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Medium" + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_CreateOrUpdateMultiRolePool", + "title": "Create or update a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json new file mode 100644 index 000000000000..6fa089a58fc1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "multiRolePoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Medium" + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateMultiRolePool", + "title": "Create or update a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json new file mode 100644 index 000000000000..ac727054c2cf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Small" + } + }, + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateWorkerPool", + "title": "Get properties of a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json new file mode 100644 index 000000000000..fa9ad3d72cee --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Small" + } + }, + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_CreateOrUpdateWorkerPool", + "title": "Get properties of a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json new file mode 100644 index 000000000000..b4b34ce5e7fd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + }, + "204": { + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Delete", + "title": "Delete an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json new file mode 100644 index 000000000000..36f295770f58 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + }, + "204": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_DeletePrivateEndpointConnection", + "title": "Deletes a private endpoint connection." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json new file mode 100644 index 000000000000..a7f15f123f8b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json @@ -0,0 +1,67 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Get", + "title": "Get the properties of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json new file mode 100644 index 000000000000..bfa062b1e629 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json @@ -0,0 +1,38 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "networking", + "type": "Microsoft.Web/hostingEnvironments/configurations/networking", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetAseV3NetworkingConfiguration", + "title": "Get networking configuration of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json new file mode 100644 index 000000000000..b3684e4ece5f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "diagnosticsName": "test-diagnostic", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-diagnostic" + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetDiagnosticsItem", + "title": "Get a diagnostics item for an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json new file mode 100644 index 000000000000..4c7de5d4c983 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/hostingEnvironments/multiRolePools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/multiRolePools/default", + "properties": { + "instanceNames": [ + "10.7.1.8", + "10.7.1.9" + ], + "workerCount": 2, + "workerSize": "Standard_D1_V2" + }, + "sku": { + "name": "Q1", + "capacity": 2, + "family": "Q", + "size": "Q1", + "tier": "Quantum" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetMultiRolePool", + "title": "Get properties of a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json new file mode 100644 index 000000000000..626234dc0f1e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Please approve my connection, thanks!", + "actionsRequired": "None", + "status": "Disconnecting" + }, + "provisioningState": "Pending" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetPrivateEndpointConnection", + "title": "Gets a private endpoint connection." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json new file mode 100644 index 000000000000..98bd8d67866c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Please approve my connection, thanks!", + "actionsRequired": "None", + "status": "Disconnecting" + }, + "provisioningState": "Pending" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetPrivateEndpointConnectionList", + "title": "Gets the list of private endpoints associated with a hosting environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json new file mode 100644 index 000000000000..c7e2528eaf55 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetPrivateLinkResources", + "title": "Gets the private link resources." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json new file mode 100644 index 000000000000..9c3624b218c1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json @@ -0,0 +1,43 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments/capacities", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/capacities/virtualip", + "properties": { + "internalIpAddress": null, + "outboundIpAddresses": [ + "20.112.141.120" + ], + "serviceIpAddress": "20.112.141.120", + "vipMappings": [ + { + "inUse": false, + "internalHttpPort": 20003, + "internalHttpsPort": 20001, + "serviceName": null, + "virtualIP": "20.112.141.135" + }, + { + "inUse": false, + "internalHttpPort": 20004, + "internalHttpsPort": 20002, + "serviceName": null, + "virtualIP": "20.112.141.150" + } + ] + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetVipInfo", + "title": "Get IP addresses assigned to an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json new file mode 100644 index 000000000000..4afd38955b5e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "workerPool1" + }, + "responses": { + "200": { + "body": { + "name": "workerPool1", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool1", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 2, + "workerSize": "Small", + "workerSizeId": 0 + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetWorkerPool", + "title": "Get properties of a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json new file mode 100644 index 000000000000..a41e60a5e89a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_List", + "title": "Get all App Service Environments for a subscription." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json new file mode 100644 index 000000000000..8d55a2dcc05f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json @@ -0,0 +1,63 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "test-asp", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/serverfarms/test-asp", + "kind": "app", + "location": "Central US EUAP", + "properties": { + "elasticScaleEnabled": false, + "freeOfferExpirationTime": null, + "geoRegion": "Central US EUAP", + "hostingEnvironmentProfile": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase" + }, + "hyperV": false, + "isSpot": false, + "isXenon": false, + "kubeEnvironmentProfile": null, + "maximumElasticWorkerCount": 0, + "maximumNumberOfWorkers": 100, + "numberOfSites": 0, + "perSiteScaling": false, + "provisioningState": null, + "reserved": false, + "resourceGroup": "test-rg", + "spotExpirationTime": null, + "status": "Ready", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "targetWorkerCount": 1, + "targetWorkerSizeId": 0, + "workerTierName": null, + "zoneRedundant": false + }, + "sku": { + "name": "I1", + "capacity": 0, + "family": "I", + "size": "I1", + "tier": "Isolated" + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListAppServicePlans", + "title": "Get all App Service plans in an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json new file mode 100644 index 000000000000..337eb5150f44 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListByResourceGroup", + "title": "Get all App Service Environments in a resource group." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json new file mode 100644 index 000000000000..940a0f0ffec4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json @@ -0,0 +1,59 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": null, + "availableCapacity": 0, + "computeMode": "Dedicated", + "excludeFromCapacityAllocation": false, + "isApplicableForAllComputeModes": false, + "isLinux": false, + "siteMode": null, + "totalCapacity": 1, + "unit": null, + "workerSize": null, + "workerSizeId": 0 + }, + { + "name": null, + "availableCapacity": 0, + "computeMode": "Dedicated", + "excludeFromCapacityAllocation": false, + "isApplicableForAllComputeModes": false, + "isLinux": false, + "siteMode": null, + "totalCapacity": 1, + "unit": null, + "workerSize": null, + "workerSizeId": 1 + }, + { + "name": null, + "availableCapacity": 0, + "computeMode": "Dedicated", + "excludeFromCapacityAllocation": false, + "isApplicableForAllComputeModes": false, + "isLinux": false, + "siteMode": null, + "totalCapacity": 1, + "unit": null, + "workerSize": null, + "workerSizeId": 2 + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListCapacities", + "title": "Get the used, available, and total worker capacity an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json new file mode 100644 index 000000000000..6475b28f5e61 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": null, + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListDiagnostics", + "title": "Get diagnostic information for an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json new file mode 100644 index 000000000000..d1e49bfd3ae9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/cpupercentage" + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/MemoryPercentage" + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/DiskQueueLength" + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/HttpQueueLength" + }, + { + "name": "BytesReceived", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesReceived" + }, + { + "name": "BytesSent", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesSent" + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRoleMetricDefinitions", + "title": "Get metric definitions for a multi-role pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json new file mode 100644 index 000000000000..f7adaba1bb8d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json @@ -0,0 +1,45 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "instance": "10.7.1.8", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/cpupercentage" + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/MemoryPercentage" + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/DiskQueueLength" + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/HttpQueueLength" + }, + { + "name": "BytesReceived", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesReceived" + }, + { + "name": "BytesSent", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesSent" + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions", + "title": "Get metric definitions for a specific instance of a multi-role pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json new file mode 100644 index 000000000000..129eb0e1af75 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json @@ -0,0 +1,160 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "S2", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "S3", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "S4", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "O2", + "tier": "Optimized" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "O3", + "tier": "Optimized" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "O4", + "tier": "Optimized" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q1", + "tier": "Quantum" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q2", + "tier": "Quantum" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q3", + "tier": "Quantum" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q4", + "tier": "Quantum" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRolePoolSkus", + "title": "Get available SKUs for scaling a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json new file mode 100644 index 000000000000..469c77812ded --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/hostingEnvironments/multiRolePools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/multiRolePools/default", + "properties": { + "instanceNames": [ + "10.7.1.8", + "10.7.1.9" + ], + "workerCount": 2, + "workerSize": "Standard_D1_V2" + }, + "sku": { + "name": "Q1", + "capacity": 2, + "family": "Q", + "size": "Q1", + "tier": "Quantum" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRolePools", + "title": "Get all multi-role pools." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json new file mode 100644 index 000000000000..9a96716709aa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRoleUsages", + "title": "Get usage metrics for a multi-role pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json new file mode 100644 index 000000000000..1db82783e992 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [], + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListOperations", + "title": "List all currently running operations on the App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json new file mode 100644 index 000000000000..4739fd8e6f6c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": { + "localizedValue": "File System Storage", + "value": "FileSystemStorage" + }, + "currentValue": 37888, + "limit": 1099511627776, + "nextResetTime": "9999-12-31T23:59:59.9999999Z", + "unit": "Bytes" + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListUsages", + "title": "Get global usage metrics of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json new file mode 100644 index 000000000000..301f1c6f8b24 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json @@ -0,0 +1,84 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "test-site", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-site", + "location": "Central US EUAP", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "2982A67AD520FBCD070650FC77814FB03B62927C6EFCA2F5FF3BF5DC60088845", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "test-site.test-ase.p.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "test-site.test-ase.p.azurewebsites.net", + "test-site.scm.test-ase.p.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "test-site.test-ase.p.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "test-site.scm.test-ase.p.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "test-site.test-ase.p.azurewebsites.net" + ], + "hostNamesDisabled": false, + "hostingEnvironmentProfile": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase" + }, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2022-04-08T20:41:04.1233333", + "outboundIpAddresses": "20.112.141.120", + "possibleOutboundIpAddresses": "20.112.141.120", + "redundancyMode": "None", + "repositorySiteName": "test-site", + "reserved": false, + "resourceGroup": "test-rg", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/serverfarms/test-serverfarm", + "siteConfig": { + "functionAppScaleLimit": 0, + "linuxFxVersion": "", + "minimumElasticInstanceCount": 0, + "numberOfWorkers": 1 + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWebApps", + "title": "Get all apps in an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json new file mode 100644 index 000000000000..2148129492aa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/CpuPercentage", + "properties": null + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/MemoryPercentage", + "properties": null + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/DiskQueueLength", + "properties": null + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/HttpQueueLength", + "properties": null + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWebWorkerMetricDefinitions", + "title": "Get metric definitions for a worker pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json new file mode 100644 index 000000000000..7a71b322cd5a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWebWorkerUsages", + "title": "Get usage metrics for a worker pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json new file mode 100644 index 000000000000..d0d1626c69ad --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "instance": "10.8.0.7", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/CpuPercentage", + "properties": null + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/MemoryPercentage", + "properties": null + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/DiskQueueLength", + "properties": null + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/HttpQueueLength", + "properties": null + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions", + "title": "Get metric definitions for a specific instance of a worker pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json new file mode 100644 index 000000000000..680913a1bbea --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json @@ -0,0 +1,91 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "workerPool1" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S1", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S2", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S3", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S4", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "O1", + "tier": "Optimized" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWorkerPoolSkus", + "title": "Get available SKUs for scaling a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json new file mode 100644 index 000000000000..48ac77e241b4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json @@ -0,0 +1,56 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "workerPool1", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool1", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 2, + "workerSize": "Small", + "workerSizeId": 0 + } + }, + { + "name": "workerPool2", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool2", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 0, + "workerSize": "Small", + "workerSizeId": 1 + } + }, + { + "name": "workerPool3", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool3", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 0, + "workerSize": "Small", + "workerSizeId": 2 + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWorkerPools", + "title": "Get all worker pools of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json new file mode 100644 index 000000000000..838521a33d6c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Reboot", + "title": "Reboot all machines in an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json new file mode 100644 index 000000000000..7d0133d301bd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + }, + "202": { + "body": { + "value": [] + }, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + } + }, + "operationId": "AppServiceEnvironments_Resume", + "title": "Resume an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json new file mode 100644 index 000000000000..364b8965a96a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + }, + "202": { + "body": { + "value": [] + }, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + } + }, + "operationId": "AppServiceEnvironments_Suspend", + "title": "Suspend an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json new file mode 100644 index 000000000000..d05c40658a25 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleHostingEnvironment", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_TestUpgradeAvailableNotification", + "title": "Send a test notification that an upgrade is available for this App Service Environment" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json new file mode 100644 index 000000000000..a3f638801da6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json @@ -0,0 +1,185 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "hostingEnvironmentEnvelope": { + "properties": { + "frontEndScaleFactor": 20, + "virtualNetwork": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated" + } + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "201": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "202": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Update", + "title": "Create or update an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json new file mode 100644 index 000000000000..acaad5e72d61 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "aseNetworkingConfiguration": { + "properties": { + "ftpEnabled": true, + "remoteDebugEnabled": true + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "networking", + "type": "Microsoft.Web/hostingEnvironments/configurations/networking", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": true, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": true, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateAseNetworkingConfiguration", + "title": "Update networking configuration of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json new file mode 100644 index 000000000000..47cd15493a6c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "name": "SampleHostingEnvironment", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "AppServiceEnvironments_Upgrade", + "title": "Initiate an upgrade on an App Service Environment" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json new file mode 100644 index 000000000000..df0398d1c265 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slotSwapEntity": { + "preserveVnet": true, + "targetSlot": "staging" + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "headers": {} + } + }, + "operationId": "WebApps_ApplySlotConfigToProduction", + "title": "Apply web app slot config" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json new file mode 100644 index 000000000000..8ebe7741412a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json @@ -0,0 +1,62 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + } + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "WebApps_ApproveOrRejectPrivateEndpointConnection", + "title": "Approves or rejects a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json new file mode 100644 index 000000000000..7a6fa475cb98 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json @@ -0,0 +1,63 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + } + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "WebApps_ApproveOrRejectPrivateEndpointConnectionSlot", + "title": "Approves or rejects a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json new file mode 100644 index 000000000000..bcfc5b41c895 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json @@ -0,0 +1,62 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + } + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_ApproveOrRejectPrivateEndpointConnection", + "title": "Approves or rejects a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json new file mode 100644 index 000000000000..4820324c09f3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json @@ -0,0 +1,76 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "request": { + "properties": { + "backupName": "abcdwe", + "backupSchedule": { + "frequencyInterval": 7, + "frequencyUnit": "Day", + "keepAtLeastOneBackup": true, + "retentionPeriodInDays": 30, + "startTime": "2022-09-02T17:33:11.641Z" + }, + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "enabled": true, + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=" + } + } + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-02T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + }, + "headers": {} + } + }, + "operationId": "WebApps_Backup", + "title": "Backup web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json new file mode 100644 index 000000000000..097f7a1d1a17 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json @@ -0,0 +1,265 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "cloningInfo": { + "appSettingsOverrides": { + "Setting1": "NewValue1", + "Setting3": "NewValue5" + }, + "cloneCustomHostNames": true, + "cloneSourceControl": true, + "configureLoadBalancing": false, + "hostingEnvironment": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/hostingenvironments/aseforsites", + "overwrite": false, + "sourceWebAppId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/sites/srcsiteg478", + "sourceWebAppLocation": "West Europe" + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Clone web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json new file mode 100644 index 000000000000..f6b6299a79d3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json @@ -0,0 +1,266 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "cloningInfo": { + "appSettingsOverrides": { + "Setting1": "NewValue1", + "Setting3": "NewValue5" + }, + "cloneCustomHostNames": true, + "cloneSourceControl": true, + "configureLoadBalancing": false, + "hostingEnvironment": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/hostingenvironments/aseforsites", + "overwrite": false, + "sourceWebAppId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/sites/srcsiteg478/slot/qa", + "sourceWebAppLocation": "West Europe" + } + } + }, + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdateSlot", + "title": "Clone web app slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json new file mode 100644 index 000000000000..8358d01a6375 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json @@ -0,0 +1,84 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-06-01-preview", + "appServicePlan": { + "kind": "app", + "location": "East US", + "properties": {}, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "asyncScalingEnabled": false, + "geoRegion": "East US", + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "asyncScalingEnabled": true, + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0" + } + } + }, + "operationId": "AppServicePlans_CreateOrUpdate", + "title": "Create Or Update App Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json new file mode 100644 index 000000000000..781e5c91e111 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "certificateEnvelope": { + "location": "East US", + "properties": { + "hostNames": [ + "ServerCert" + ], + "password": "" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "Certificates_CreateOrUpdate", + "title": "Create Or Update Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json new file mode 100644 index 000000000000..e4fa62fe722d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json @@ -0,0 +1,353 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "functionapp,linux", + "location": "East US", + "properties": { + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100 + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "siteConfig": { + "appSettings": [ + { + "name": "AzureWebJobsStorage", + "value": "DefaultEndpointsProtocol=https;AccountName=StorageAccountName;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + }, + { + "name": "APPLICATIONINSIGHTS_CONNECTION_STRING", + "value": "InstrumentationKey=Sanitized;IngestionEndpoint=Sanitized;LiveEndpoint=Sanitized" + } + ] + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": null, + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": null + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": null, + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": null + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Create or Update Flex Consumption function app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json new file mode 100644 index 000000000000..5e430573cdc6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json @@ -0,0 +1,382 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "functionapp,linux", + "location": "East US", + "properties": { + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": [ + { + "name": "http", + "instanceCount": 2 + } + ], + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": { + "http": { + "perInstanceConcurrency": 16 + } + } + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "siteConfig": { + "appSettings": [ + { + "name": "AzureWebJobsStorage", + "value": "DefaultEndpointsProtocol=https;AccountName=StorageAccountName;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + }, + { + "name": "APPLICATIONINSIGHTS_CONNECTION_STRING", + "value": "InstrumentationKey=Sanitized;IngestionEndpoint=Sanitized;LiveEndpoint=Sanitized" + } + ] + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": [ + { + "name": "http", + "instanceCount": 2 + } + ], + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": { + "http": { + "perInstanceConcurrency": 16 + } + } + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": [ + { + "name": "http", + "instanceCount": 2 + } + ], + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": { + "http": { + "perInstanceConcurrency": 16 + } + } + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Create or Update Flex Consumption function app with details" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json new file mode 100644 index 000000000000..0db44fb4b697 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json @@ -0,0 +1,53 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsite", + "configName": "default", + "api-version": "2026-06-01-preview", + "resource": { + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "westus", + "priority": 1, + "weight": 700 + }, + { + "region": "eastus", + "priority": 1, + "weight": 300 + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "westus", + "priority": 1, + "weight": 700 + }, + { + "region": "eastus", + "priority": 1, + "weight": 300 + } + ], + "provisioningState": "Succeeded" + } + } + } + }, + "operationId": "ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig", + "title": "Create or update managed traffic configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json new file mode 100644 index 000000000000..b445ab518941 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "eastus-silo", + "api-version": "2026-06-01-preview", + "resource": { + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "westus", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "westus", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "westus", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "InProgress" + } + } + } + }, + "operationId": "ServerFarmSilos_CreateOrUpdateServerFarmSilo", + "title": "Create or update App Service plan silo" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json new file mode 100644 index 000000000000..cd8388b9500c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json @@ -0,0 +1,62 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateEnvelope": { + "location": "East US", + "properties": { + "hostNames": [ + "ServerCert" + ], + "password": "" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + }, + "201": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_CreateOrUpdate", + "title": "Create Or Update Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json new file mode 100644 index 000000000000..17b4e95c1776 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json @@ -0,0 +1,63 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateEnvelope": { + "location": "East US", + "properties": { + "hostNames": [ + "ServerCert" + ], + "password": "" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + }, + "201": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_CreateOrUpdateSlot", + "title": "Create Or Update Certificate for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json new file mode 100644 index 000000000000..a0e0d0a2dc68 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json @@ -0,0 +1,85 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsite", + "siloName": "eastus-silo", + "api-version": "2026-06-01-preview", + "resource": { + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primarySiteName": "testsite", + "primaryLocation": "westus", + "trafficMode": "Active", + "endpointStatus": "Enabled", + "followLkg": true, + "appSettingsOverrides": [ + { + "name": "SETTING1", + "value": "overrideValue1" + } + ], + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primarySiteName": "testsite", + "primaryLocation": "westus", + "trafficMode": "Active", + "endpointStatus": "Enabled", + "followLkg": true, + "appSettingsOverrides": [ + { + "name": "SETTING1", + "value": "overrideValue1" + } + ], + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "provisioningState": "Succeeded" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primarySiteName": "testsite", + "primaryLocation": "westus", + "trafficMode": "Active", + "endpointStatus": "Enabled", + "followLkg": true, + "appSettingsOverrides": [ + { + "name": "SETTING1", + "value": "overrideValue1" + } + ], + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "provisioningState": "InProgress" + } + } + } + }, + "operationId": "SiteSilos_CreateOrUpdateSiteSilo", + "title": "Create or update site silo" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json new file mode 100644 index 000000000000..e3fcf02c960d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json @@ -0,0 +1,83 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "staticSiteEnvelope": { + "location": "West US 2", + "properties": { + "branch": "master", + "buildProperties": { + "apiLocation": "api", + "appArtifactLocation": "build", + "appLocation": "app" + }, + "repositoryToken": "repoToken123", + "repositoryUrl": "https://github.com/username/RepoName" + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSite", + "title": "Create or update a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json new file mode 100644 index 000000000000..33fa5a62293a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteAppSettings", + "title": "Creates or updates the app settings of a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json new file mode 100644 index 000000000000..c5926c9dd0d6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "basicAuthEnvelope": { + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "password": "**********************", + "secretUrl": null + } + }, + "basicAuthName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/basicAuth/default", + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "secretState": "Password", + "secretUrl": null + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateBasicAuth", + "title": "Creates or updates basic auth properties for a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json new file mode 100644 index 000000000000..b374b667d8a8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteBuildAppSettings", + "title": "Creates or updates the function app settings of a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..17765ad3b120 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": { + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateBuildDatabaseConnection", + "title": "Create or update a database connection for a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json new file mode 100644 index 000000000000..87a63cc5c8de --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteBuildFunctionAppSettings", + "title": "Creates or updates the function app settings of a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json new file mode 100644 index 000000000000..9152749f1212 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "staticSiteCustomDomainRequestPropertiesEnvelope": { + "properties": {} + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + } + }, + "202": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteCustomDomain", + "title": "Create or update a custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..50456dc10a4a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": { + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateDatabaseConnection", + "title": "Create or update a database connection for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json new file mode 100644 index 000000000000..456b740a6a3d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteFunctionAppSettings", + "title": "Creates or updates the function app settings of a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json new file mode 100644 index 000000000000..c5cdb36a4f15 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json @@ -0,0 +1,264 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientAffinityProxyEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Create or Update web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json new file mode 100644 index 000000000000..a59f6c014ba4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json @@ -0,0 +1,255 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientAffinityProxyEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdateSlot", + "title": "Create or Update Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json new file mode 100644 index 000000000000..12e519f33ec1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "staticSiteUserRolesInvitationEnvelope": { + "properties": { + "domain": "happy-sea-15afae3e.azurestaticwebsites.net", + "numHoursToExpiration": 1, + "provider": "aad", + "roles": "admin,contributor", + "userDetails": "username" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": { + "expiresOn": "2020-02-28T16:53:56.211Z", + "invitationUrl": "https://happy-sea-15afae3e.azurestaticwebsites.net?invite=asdf" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateUserRolesInvitationLink", + "title": "Create an invitation link for a user for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json new file mode 100644 index 000000000000..934a0510bd21 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json @@ -0,0 +1,14 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "AppServicePlans_Delete", + "title": "Delete App Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json new file mode 100644 index 000000000000..67361ec324f7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "204": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_DeleteAseCustomDnsSuffixConfiguration", + "title": "Delete ASE custom DNS suffix configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json new file mode 100644 index 000000000000..fc48ebee3168 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json @@ -0,0 +1,14 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "Certificates_Delete", + "title": "Delete Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json new file mode 100644 index 000000000000..3292f05f41d8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowArtifacts": { + "filesToDelete": [ + "test/workflow.json", + "test/" + ] + } + }, + "responses": { + "200": {} + }, + "operationId": "WebApps_DeployWorkflowArtifacts", + "title": "Delete workflow artifacts" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json new file mode 100644 index 000000000000..84d717faf682 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "eastus-silo", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": {}, + "204": {} + }, + "operationId": "ServerFarmSilos_DeleteServerFarmSilo", + "title": "Delete App Service plan silo" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json new file mode 100644 index 000000000000..df8394e97b4b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "SiteCertificates_Delete", + "title": "Delete Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json new file mode 100644 index 000000000000..85b27095f910 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "SiteCertificates_DeleteSlot", + "title": "Delete Certificate for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json new file mode 100644 index 000000000000..1ca1bb39099c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {} + }, + "202": { + "body": {}, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": { + "body": {} + } + }, + "operationId": "WebApps_DeletePrivateEndpointConnection", + "title": "Delete a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json new file mode 100644 index 000000000000..00cae422c483 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {} + }, + "202": { + "body": {}, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": { + "body": {} + } + }, + "operationId": "WebApps_DeletePrivateEndpointConnectionSlot", + "title": "Delete a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json new file mode 100644 index 000000000000..d186aabb8f5b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {} + }, + "202": { + "body": {}, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": { + "body": {} + } + }, + "operationId": "StaticSites_DeletePrivateEndpointConnection", + "title": "Delete a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json new file mode 100644 index 000000000000..6e937b4c4ae2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsite", + "siloName": "eastus-silo", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": {}, + "204": {} + }, + "operationId": "SiteSilos_DeleteSiteSilo", + "title": "Delete site silo" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json new file mode 100644 index 000000000000..49e7e72a52e1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_DeleteStaticSite", + "title": "Delete a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json new file mode 100644 index 000000000000..0cf1d1be5a5f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": {} + }, + "operationId": "StaticSites_DeleteStaticSiteBuild", + "title": "Delete a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..34adeaf2df20 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DeleteBuildDatabaseConnection", + "title": "Delete a database connection from a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json new file mode 100644 index 000000000000..69f512174034 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_DeleteStaticSiteCustomDomain", + "title": "Delete a custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..d27f6d38e771 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DeleteDatabaseConnection", + "title": "Delete a database connection from a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json new file mode 100644 index 000000000000..53c881edbb6a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "authprovider": "aad", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "userid": "1234" + }, + "responses": { + "200": {} + }, + "operationId": "StaticSites_DeleteStaticSiteUser", + "title": "Delete a user for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json new file mode 100644 index 000000000000..f1b8eaa2bf44 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {}, + "404": {} + }, + "operationId": "WebApps_Delete", + "title": "Delete Web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json new file mode 100644 index 000000000000..bc7a1e2d908b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "backupId": "12345", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "404": {} + }, + "operationId": "WebApps_DeleteBackup", + "title": "Delete web app backup" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json new file mode 100644 index 000000000000..23f031e3c839 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {}, + "404": {} + }, + "operationId": "WebApps_DeleteSlot", + "title": "Delete Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json new file mode 100644 index 000000000000..005615ff7d65 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_DetachStaticSite", + "title": "Detach a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json new file mode 100644 index 000000000000..f628e6b3eceb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DetachUserProvidedFunctionAppFromStaticSite", + "title": "Detach the user provided function app from the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json new file mode 100644 index 000000000000..f798dc3988f1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "12", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DetachUserProvidedFunctionAppFromStaticSiteBuild", + "title": "Detach the user provided function app from the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json new file mode 100644 index 000000000000..2bb5eaced008 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysis", + "title": "Execute site analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json new file mode 100644 index 000000000000..a92f8372c11e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysis", + "title": "Execute site slot analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json new file mode 100644 index 000000000000..3efff0116483 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysisSlot", + "title": "Execute site slot analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json new file mode 100644 index 000000000000..e24527df4220 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysisSlot", + "title": "Execute site analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json new file mode 100644 index 000000000000..8cfd432fcc69 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetector", + "title": "Execute site detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json new file mode 100644 index 000000000000..95d83eb0c348 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetector", + "title": "Execute site slot detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json new file mode 100644 index 000000000000..caa05848a61b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetectorSlot", + "title": "Execute site slot detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json new file mode 100644 index 000000000000..ce070f8f6fff --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetectorSlot", + "title": "Execute site detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json new file mode 100644 index 000000000000..54f9e8535817 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json @@ -0,0 +1,135 @@ +{ + "parameters": { + "name": "SampleAppServiceEnvironment", + "api-version": "2026-06-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your apps on this app service environment received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes all the requests to all applications running on this app service environment.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetHostingEnvironmentDetectorResponse", + "title": "Get App Service Environment Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json new file mode 100644 index 000000000000..817e5a599251 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysis", + "title": "Get App Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json new file mode 100644 index 000000000000..755ce8980756 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysis", + "title": "Get App Slot Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json new file mode 100644 index 000000000000..0a9bfdb6d3bf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysisSlot", + "title": "Get App Slot Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json new file mode 100644 index 000000000000..3f241886fae2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysisSlot", + "title": "Get App Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json new file mode 100644 index 000000000000..ba4ddc71de9f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetector", + "title": "Get App Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json new file mode 100644 index 000000000000..d9b8cb27706d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponse", + "title": "Get App Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json new file mode 100644 index 000000000000..dd11df514be4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponse", + "title": "Get App Slot Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json new file mode 100644 index 000000000000..fab8f1317bbc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponseSlot", + "title": "Get App Slot Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json new file mode 100644 index 000000000000..38d11dc54db2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponseSlot", + "title": "Get App Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json new file mode 100644 index 000000000000..159e415eb429 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetector", + "title": "Get App Slot Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json new file mode 100644 index 000000000000..bf8e77a704a3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorSlot", + "title": "Get App Slot Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json new file mode 100644 index 000000000000..b77d4dbf7189 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorSlot", + "title": "Get App Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json new file mode 100644 index 000000000000..c89d977493fa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategory", + "title": "Get App Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json new file mode 100644 index 000000000000..c8bed91c2806 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategory", + "title": "Get App Slot Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json new file mode 100644 index 000000000000..0fba7233aca2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategorySlot", + "title": "Get App Slot Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json new file mode 100644 index 000000000000..809c1214f9f5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategorySlot", + "title": "Get App Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json new file mode 100644 index 000000000000..7d5ed2e726e0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "SampleAppServiceEnvironment", + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes all the requests to all applications running on this app service environment.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListHostingEnvironmentDetectorResponses", + "title": "Get App Service Environment Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json new file mode 100644 index 000000000000..40c74e396a76 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalyses", + "title": "List App Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json new file mode 100644 index 000000000000..5ad4e4761bb5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalyses", + "title": "List App Slot Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json new file mode 100644 index 000000000000..60b7341fd77b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalysesSlot", + "title": "List App Slot Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json new file mode 100644 index 000000000000..eecc8c970ff4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalysesSlot", + "title": "List App Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json new file mode 100644 index 000000000000..4afa317e0dc1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponses", + "title": "Get App Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json new file mode 100644 index 000000000000..05e2bcf60476 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponses", + "title": "Get App Slot Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json new file mode 100644 index 000000000000..9e891a583f52 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponsesSlot", + "title": "Get App Slot Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json new file mode 100644 index 000000000000..0f68c7cc3fd2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponsesSlot", + "title": "Get App Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json new file mode 100644 index 000000000000..868640a47080 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json @@ -0,0 +1,200 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "sitecpuanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis", + "properties": { + "description": null, + "displayName": "CPU Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "sitememoryanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis", + "properties": { + "description": null, + "displayName": "Physical Memory Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "committedmemoryusage", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage", + "properties": { + "description": null, + "displayName": "Committed Memory Usage", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "pagefileoperations", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations", + "properties": { + "description": null, + "displayName": "Page File Operations", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "siterestartuserinitiated", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated", + "properties": { + "description": null, + "displayName": "User Initiated Site Restarts", + "isEnabled": true, + "rank": 14 + } + }, + { + "name": "siterestartsettingupdate", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate", + "properties": { + "description": null, + "displayName": "Config Update Site Restarts", + "isEnabled": true, + "rank": 12 + } + }, + { + "name": "frebanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis", + "properties": { + "description": null, + "displayName": "Freb Logs Analysis", + "isEnabled": true, + "rank": 6 + } + }, + { + "name": "workeravailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability", + "properties": { + "description": null, + "displayName": "Worker Availability", + "isEnabled": true, + "rank": 11 + } + }, + { + "name": "sitelatency", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency", + "properties": { + "description": null, + "displayName": "Site Latency", + "isEnabled": false, + "rank": 1005 + } + }, + { + "name": "threadcount", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount", + "properties": { + "description": null, + "displayName": "Thread Count", + "isEnabled": true, + "rank": 23 + } + }, + { + "name": "failedrequestsperuri", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri", + "properties": { + "description": null, + "displayName": "Failed Requests Per URI", + "isEnabled": true, + "rank": 998 + } + }, + { + "name": "autoheal", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal", + "properties": { + "description": null, + "displayName": "AutoHeal", + "isEnabled": true, + "rank": 21 + } + }, + { + "name": "loganalyzer", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer", + "properties": { + "description": null, + "displayName": "PHP Log Analyzer", + "isEnabled": true, + "rank": 26 + } + }, + { + "name": "aspnetcore", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore", + "properties": { + "description": null, + "displayName": "ASP.NET Core", + "isEnabled": true, + "rank": 5 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectors", + "title": "List App Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json new file mode 100644 index 000000000000..037de0e59388 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectors", + "title": "List App Slot Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json new file mode 100644 index 000000000000..2d1d20d679c5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorsSlot", + "title": "List App Slot Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json new file mode 100644 index 000000000000..6e4e98f18ed7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json @@ -0,0 +1,200 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "sitecpuanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis", + "properties": { + "description": null, + "displayName": "CPU Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "sitememoryanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis", + "properties": { + "description": null, + "displayName": "Physical Memory Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "committedmemoryusage", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage", + "properties": { + "description": null, + "displayName": "Committed Memory Usage", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "pagefileoperations", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations", + "properties": { + "description": null, + "displayName": "Page File Operations", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "siterestartuserinitiated", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated", + "properties": { + "description": null, + "displayName": "User Initiated Site Restarts", + "isEnabled": true, + "rank": 14 + } + }, + { + "name": "siterestartsettingupdate", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate", + "properties": { + "description": null, + "displayName": "Config Update Site Restarts", + "isEnabled": true, + "rank": 12 + } + }, + { + "name": "frebanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis", + "properties": { + "description": null, + "displayName": "Freb Logs Analysis", + "isEnabled": true, + "rank": 6 + } + }, + { + "name": "workeravailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability", + "properties": { + "description": null, + "displayName": "Worker Availability", + "isEnabled": true, + "rank": 11 + } + }, + { + "name": "sitelatency", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency", + "properties": { + "description": null, + "displayName": "Site Latency", + "isEnabled": false, + "rank": 1005 + } + }, + { + "name": "threadcount", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount", + "properties": { + "description": null, + "displayName": "Thread Count", + "isEnabled": true, + "rank": 23 + } + }, + { + "name": "failedrequestsperuri", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri", + "properties": { + "description": null, + "displayName": "Failed Requests Per URI", + "isEnabled": true, + "rank": 998 + } + }, + { + "name": "autoheal", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal", + "properties": { + "description": null, + "displayName": "AutoHeal", + "isEnabled": true, + "rank": 21 + } + }, + { + "name": "loganalyzer", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer", + "properties": { + "description": null, + "displayName": "PHP Log Analyzer", + "isEnabled": true, + "rank": 26 + } + }, + { + "name": "aspnetcore", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore", + "properties": { + "description": null, + "displayName": "ASP.NET Core", + "isEnabled": true, + "rank": 5 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorsSlot", + "title": "List App Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json new file mode 100644 index 000000000000..620548a50aef --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategories", + "title": "List App Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json new file mode 100644 index 000000000000..39da6827e8fe --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategories", + "title": "List App Slot Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json new file mode 100644 index 000000000000..ae63133ffcfb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategoriesSlot", + "title": "List App Slot Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json new file mode 100644 index 000000000000..775cdbc18914 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategoriesSlot", + "title": "List App Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json new file mode 100644 index 000000000000..eecc12b531ca --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "location": "West US 2", + "staticSitesWorkflowPreviewRequest": { + "properties": { + "branch": "master", + "buildProperties": { + "apiLocation": "api", + "appArtifactLocation": "build", + "appLocation": "app" + }, + "repositoryUrl": "https://github.com/username/RepoName" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": { + "path": ".github/workflows/azure-static-web-apps-.yml", + "contents": "base64encodedworkflowcontentspreview" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_PreviewWorkflow", + "title": "Generates a preview workflow file for the static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json new file mode 100644 index 000000000000..311810dd2e43 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/repo", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": [] + }, + "sku": { + "name": "Standard", + "tier": "Standard" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_List", + "title": "Get all static sites in a subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json new file mode 100644 index 000000000000..74db79e7c3cb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json @@ -0,0 +1,42 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "AppServicePlans_Get", + "title": "Get App Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json new file mode 100644 index 000000000000..33e9f96d40de --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "customDnsSuffix", + "type": "Microsoft.Web/hostingEnvironments/configurations/customdnssuffix", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/customdnssuffix", + "properties": { + "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", + "dnsSuffix": "contoso.com", + "keyVaultReferenceIdentity": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/test-rg/providers/microsoft.managedidentity/userassignedidentities/test-user-mi", + "provisioningDetails": null, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetAseCustomDnsSuffixConfiguration", + "title": "Get ASE custom DNS suffix configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json new file mode 100644 index 000000000000..5921b265747c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json @@ -0,0 +1,88 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettingsv2", + "type": "Microsoft.Web/sites/authsettingsv2", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettingsv2", + "kind": "app", + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAuthSettingsV2WithoutSecrets", + "title": "List Auth Settings without Secrets" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json new file mode 100644 index 000000000000..f02d0515b777 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "Certificates_Get", + "title": "Get Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json new file mode 100644 index 000000000000..3f56816eb69c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "deletedSiteId": "9", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "wussite6", + "type": "Microsoft.Web/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6", + "properties": { + "deletedSiteId": 9, + "deletedSiteName": "wussite6", + "deletedTimestamp": "2019-05-09T22:29:05.1337007", + "geoRegionName": "West US 2", + "kind": "app", + "resourceGroup": "rg1", + "slot": "Production", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + }, + "headers": {} + } + }, + "operationId": "Global_GetDeletedWebApp", + "title": "Get Deleted Web App" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json new file mode 100644 index 000000000000..4d00b1ef1ad3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "deletedSiteId": "9", + "location": "West US 2", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "wussite6", + "type": "Microsoft.Web/locations/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6", + "properties": { + "deletedSiteId": 9, + "deletedSiteName": "wussite6", + "deletedTimestamp": "2019-05-09T22:29:05.1337007", + "geoRegionName": "West US 2", + "kind": "app", + "resourceGroup": "rg1", + "slot": "Production", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + }, + "headers": {} + } + }, + "operationId": "DeletedWebApps_GetDeletedWebAppByLocation", + "title": "Get Deleted Web App by Location" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json new file mode 100644 index 000000000000..554b075fe4ab --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "deletedSiteId": "9", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "name": "wussite6", + "type": "Microsoft.Web/locations/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6/snapshots/9", + "properties": { + "time": "2019-05-09T22:29:05.1337007" + } + } + ], + "headers": {} + } + }, + "operationId": "Global_GetDeletedWebAppSnapshots", + "title": "Get Deleted Web App Snapshots" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json new file mode 100644 index 000000000000..c4df1f198211 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json @@ -0,0 +1,781 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/dotnet", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|3.1", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|3.1", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.1" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|2.2", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|2.2", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "2.2" + } + ], + "value": "2" + }, + { + "displayText": ".NET Framework 4", + "minorVersions": [ + { + "displayText": ".NET Framework 4.7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": {}, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.7", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "4.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/node", + "properties": { + "displayText": "Node.js", + "majorVersions": [ + { + "displayText": "Node.js 14", + "minorVersions": [ + { + "displayText": "Node.js 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|14", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|14", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~14" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~14", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "14 LTS" + } + ], + "value": "14" + }, + { + "displayText": "Node.js 12", + "minorVersions": [ + { + "displayText": "Node.js 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|12", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|12", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~12" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~12", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "12 LTS" + } + ], + "value": "12" + }, + { + "displayText": "Node.js 10", + "minorVersions": [ + { + "displayText": "Node.js 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|10", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|10", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~10" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~10", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "10 LTS" + } + ], + "value": "10" + }, + { + "displayText": "Node.js 8", + "minorVersions": [ + { + "displayText": "Node.js 8 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~8" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~8", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "8 LTS" + } + ], + "value": "8" + }, + { + "displayText": "Node.js 6", + "minorVersions": [ + { + "displayText": "Node.js 6 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "WEBSITE_NODE_DEFAULT_VERSION": "~6" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "6 LTS" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/python", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.7", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.7", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.6", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.6", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.6" + } + ], + "value": "3" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "java", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/java", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|11", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|11", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11", + "siteConfigPropertiesDictionary": { + "javaVersion": "11", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "11.0" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8", + "siteConfigPropertiesDictionary": { + "javaVersion": "1.8", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "8.0" + } + ], + "value": "8" + } + ], + "preferredOs": "Windows", + "value": "java" + } + }, + { + "name": "powershell", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/powershell", + "properties": { + "displayText": "PowerShell Core", + "majorVersions": [ + { + "displayText": "PowerShell 7", + "minorVersions": [ + { + "displayText": "PowerShell 7.0", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~7", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~7", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PowerShell Core 6", + "minorVersions": [ + { + "displayText": "PowerShell Core 6.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "endOfLifeDate": "2020-10-04T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~6", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "6.2" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "powershell" + } + }, + { + "name": "custom", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/custom", + "properties": { + "displayText": "Custom", + "majorVersions": [ + { + "displayText": "Custom", + "minorVersions": [ + { + "displayText": "Custom Handler", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "custom", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + } + }, + "value": "custom" + } + ], + "value": "custom" + } + ], + "preferredOs": "Windows", + "value": "custom" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetFunctionAppStacks", + "title": "Get Function App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json new file mode 100644 index 000000000000..4c88e0ccb0ba --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json @@ -0,0 +1,788 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "location": "westus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/dotnet", + "location": "westus", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|3.1", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|3.1", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.1" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|2.2", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|2.2", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "2.2" + } + ], + "value": "2" + }, + { + "displayText": ".NET Framework 4", + "minorVersions": [ + { + "displayText": ".NET Framework 4.7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": {}, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.7", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "4.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/node", + "location": "westus", + "properties": { + "displayText": "Node.js", + "majorVersions": [ + { + "displayText": "Node.js 14", + "minorVersions": [ + { + "displayText": "Node.js 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|14", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|14", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~14" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~14", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "14 LTS" + } + ], + "value": "14" + }, + { + "displayText": "Node.js 12", + "minorVersions": [ + { + "displayText": "Node.js 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|12", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|12", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~12" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~12", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "12 LTS" + } + ], + "value": "12" + }, + { + "displayText": "Node.js 10", + "minorVersions": [ + { + "displayText": "Node.js 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|10", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|10", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~10" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~10", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "10 LTS" + } + ], + "value": "10" + }, + { + "displayText": "Node.js 8", + "minorVersions": [ + { + "displayText": "Node.js 8 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~8" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~8", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "8 LTS" + } + ], + "value": "8" + }, + { + "displayText": "Node.js 6", + "minorVersions": [ + { + "displayText": "Node.js 6 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "WEBSITE_NODE_DEFAULT_VERSION": "~6" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "6 LTS" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/python", + "location": "westus", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.7", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.7", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.6", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.6", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.6" + } + ], + "value": "3" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "java", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/java", + "location": "westus", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|11", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|11", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11", + "siteConfigPropertiesDictionary": { + "javaVersion": "11", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "11.0" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8", + "siteConfigPropertiesDictionary": { + "javaVersion": "1.8", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "8.0" + } + ], + "value": "8" + } + ], + "preferredOs": "Windows", + "value": "java" + } + }, + { + "name": "powershell", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/powershell", + "location": "westus", + "properties": { + "displayText": "PowerShell Core", + "majorVersions": [ + { + "displayText": "PowerShell 7", + "minorVersions": [ + { + "displayText": "PowerShell 7.0", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~7", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~7", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PowerShell Core 6", + "minorVersions": [ + { + "displayText": "PowerShell Core 6.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "endOfLifeDate": "2020-10-04T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~6", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "6.2" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "powershell" + } + }, + { + "name": "custom", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/custom", + "location": "westus", + "properties": { + "displayText": "Custom", + "majorVersions": [ + { + "displayText": "Custom", + "minorVersions": [ + { + "displayText": "Custom Handler", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "custom", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + } + }, + "value": "custom" + } + ], + "value": "custom" + } + ], + "preferredOs": "Windows", + "value": "custom" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetFunctionAppStacksForLocation", + "title": "Get Locations Function App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json new file mode 100644 index 000000000000..75b8591b0b14 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json @@ -0,0 +1,81 @@ +{ + "parameters": { + "name": "SampleAse", + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "description": "App Service management", + "endpoints": [ + "70.37.57.58/32", + "157.55.208.185/32", + "23.102.188.65/32", + "191.236.154.88/32", + "52.174.22.21/32", + "13.94.149.179/32", + "13.94.143.126/32", + "13.94.141.115/32", + "52.178.195.197/32", + "52.178.190.65/32", + "52.178.184.149/32", + "52.178.177.147/32", + "13.75.127.117/32", + "40.83.125.161/32", + "40.83.121.56/32", + "40.83.120.64/32", + "52.187.56.50/32", + "52.187.63.37/32", + "52.187.59.251/32", + "52.187.63.19/32", + "52.165.158.140/32", + "52.165.152.214/32", + "52.165.154.193/32", + "52.165.153.122/32", + "104.44.129.255/32", + "104.44.134.255/32", + "104.44.129.243/32", + "104.44.129.141/32", + "65.52.193.203/32", + "70.37.89.222/32", + "13.64.115.203/32", + "52.225.177.153/32", + "65.52.172.237/32" + ], + "ports": [ + "454", + "455" + ] + }, + { + "description": "App Service Environment VIP", + "endpoints": [ + "52.247.209.18/32" + ], + "ports": [ + "454", + "455", + "16001" + ] + }, + { + "description": "App Service Environment subnet", + "endpoints": [ + "192.168.250.0/24" + ], + "ports": [ + "All" + ] + } + ] + } + } + }, + "operationId": "AppServiceEnvironments_GetInboundNetworkDependenciesEndpoints", + "title": "Get the network endpoints of all inbound dependencies of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json new file mode 100644 index 000000000000..7d1a87315ecc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "appSettingKey": "setting", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/config/configreferences/appsettings/setting", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingKeyVaultReference", + "title": "Get Azure Key Vault app setting reference" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json new file mode 100644 index 000000000000..cfefeb520191 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "appSettingKey": "setting", + "resourceGroupName": "testrg123", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/slots/stage/config/configreferences/appsettings/setting", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingKeyVaultReferenceSlot", + "title": "Get Azure Key Vault slot app setting reference" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json new file mode 100644 index 000000000000..66ea6edda287 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/config/configreferences/appsettings/secretName", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/config/configreferences/appsettings/secretName2", + "properties": { + "secretName": "secretName2", + "secretVersion": "secretVersion2", + "vaultName": "keyVaultName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingsKeyVaultReferences", + "title": "Get Azure Key Vault references for app settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json new file mode 100644 index 000000000000..8cb62625a988 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/slots/stage/config/configreferences/appsettings/secretName", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/slots/stage/config/configreferences/appsettings/secretName2", + "properties": { + "secretName": "secretName2", + "secretVersion": "secretVersion2", + "vaultName": "keyVaultName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingsKeyVaultReferencesSlot", + "title": "Get Azure Key Vault references for app settings for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json new file mode 100644 index 000000000000..46ebeaa1d1a5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackend", + "title": "Get details of the linked backend registered with a static site by name." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json new file mode 100644 index 000000000000..a07e5a9e1c6b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackendForBuild", + "title": "Get details of the linked backend registered with a static site build by name." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json new file mode 100644 index 000000000000..6b27158725d5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2020-03-04T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackends", + "title": "Get details of the linked backends registered with a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json new file mode 100644 index 000000000000..c34c3f4bec32 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2020-03-04T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackendsForBuild", + "title": "Get details of the linked backends registered with a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json new file mode 100644 index 000000000000..be545066aea9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsite", + "configName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "westus", + "priority": 1, + "weight": 500 + }, + { + "region": "eastus", + "priority": 1, + "weight": 500 + } + ], + "provisioningState": "Succeeded" + } + } + } + }, + "operationId": "ManagedTrafficConfigs_GetManagedTrafficConfig", + "title": "Get managed traffic configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json new file mode 100644 index 000000000000..509b5415a6bf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json @@ -0,0 +1,804 @@ +{ + "parameters": { + "name": "SampleAse", + "api-version": "2026-06-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "category": "Azure Storage", + "endpoints": [ + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.36", + "isAccessible": true, + "latency": 42.0469, + "port": 80 + }, + { + "ipAddress": "52.183.104.36", + "isAccessible": true, + "latency": 41.7038, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.25", + "isAccessible": true, + "latency": 37.326, + "port": 80 + }, + { + "ipAddress": "52.183.104.25", + "isAccessible": true, + "latency": 37.513600000000004, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.26", + "isAccessible": true, + "latency": 32.789, + "port": 80 + }, + { + "ipAddress": "52.183.104.26", + "isAccessible": true, + "latency": 1.8702, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.28", + "isAccessible": true, + "latency": 36.7378, + "port": 80 + }, + { + "ipAddress": "52.183.104.28", + "isAccessible": true, + "latency": 36.7108, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 4.0261000000000005, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 3.8264, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 40.8523, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 40.7501, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 1.2071, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 38.2975, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 59.383700000000005, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 60.0775, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 3.5512, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.6777, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 3.5204, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 2.8193, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.2720000000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.0147, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 3.2387, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 3.2804, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.16", + "isAccessible": true, + "latency": 43.025200000000005, + "port": 80 + }, + { + "ipAddress": "13.66.176.16", + "isAccessible": true, + "latency": 43.1683, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.25", + "isAccessible": true, + "latency": 41.8598, + "port": 80 + }, + { + "ipAddress": "13.66.176.25", + "isAccessible": true, + "latency": 41.9805, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.26", + "isAccessible": true, + "latency": 30.542900000000003, + "port": 80 + }, + { + "ipAddress": "13.66.176.26", + "isAccessible": true, + "latency": 0.9832000000000001, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.28", + "isAccessible": true, + "latency": 35.9562, + "port": 80 + }, + { + "ipAddress": "13.66.176.28", + "isAccessible": true, + "latency": 36.0643, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 3.2829, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.3393, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 3.4103000000000003, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 4.1032, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.1141, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.0247, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 2.834, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 2.8198000000000003, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 1.3855000000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 1.0594000000000001, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 2.4717000000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 2.4827, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.395, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.1701, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 1.4308, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 22.5866, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.5372, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.4626, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 3.7873, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 4.1911000000000005, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 2.9162000000000003, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 2.7896, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 26.723100000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 26.735200000000003, + "port": 443 + } + ] + } + ] + }, + { + "category": "Azure SQL Database", + "endpoints": [ + { + "domainName": "database.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.226.202", + "isAccessible": true, + "latency": 1.5964, + "port": 1433 + } + ] + } + ] + }, + { + "category": "Azure Management", + "endpoints": [ + { + "domainName": "management.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "23.102.135.246", + "isAccessible": true, + "latency": 46.5764, + "port": 443 + } + ] + }, + { + "domainName": "admin.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "23.102.135.247", + "isAccessible": true, + "latency": 47.408, + "port": 443 + } + ] + }, + { + "domainName": "management.azure.com", + "endpointDetails": [ + { + "ipAddress": "52.151.25.45", + "isAccessible": true, + "latency": 3.9529, + "port": 443 + } + ] + } + ] + }, + { + "category": "Azure Active Directory", + "endpoints": [ + { + "domainName": "graph.windows.net", + "endpointDetails": [ + { + "ipAddress": "20.190.133.83", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + }, + { + "ipAddress": "20.190.133.81", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + }, + { + "ipAddress": "20.190.133.67", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + }, + { + "ipAddress": "40.126.5.34", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + } + ] + } + ] + }, + { + "category": "Regional Service", + "endpoints": [ + { + "domainName": "gr-prod-mwh.cloudapp.net", + "endpointDetails": [ + { + "ipAddress": "13.66.225.188", + "isAccessible": true, + "latency": 3.3826, + "port": 443 + } + ] + }, + { + "domainName": "az-prod.metrics.nsatc.net", + "endpointDetails": [ + { + "ipAddress": "40.77.24.27", + "isAccessible": true, + "latency": 38.5647, + "port": 443 + } + ] + } + ] + }, + { + "category": "SSL Certificate Verification", + "endpoints": [ + { + "domainName": "ocsp.msocsp.com", + "endpointDetails": [ + { + "ipAddress": "104.18.25.243", + "isAccessible": true, + "latency": 6.0651, + "port": 80 + }, + { + "ipAddress": "104.18.25.243", + "isAccessible": true, + "latency": 12.888, + "port": 443 + }, + { + "ipAddress": "104.18.24.243", + "isAccessible": true, + "latency": 6.0651, + "port": 80 + }, + { + "ipAddress": "104.18.24.243", + "isAccessible": true, + "latency": 12.888, + "port": 443 + } + ] + }, + { + "domainName": "mscrl.microsoft.com", + "endpointDetails": [ + { + "ipAddress": "152.199.4.33", + "isAccessible": true, + "latency": 6.742900000000001, + "port": 80 + }, + { + "ipAddress": "152.199.4.33", + "isAccessible": true, + "latency": 7.436100000000001, + "port": 443 + } + ] + }, + { + "domainName": "crl.microsoft.com", + "endpointDetails": [ + { + "ipAddress": "23.215.102.10", + "isAccessible": true, + "latency": 25.136200000000002, + "port": 80 + }, + { + "ipAddress": "23.215.102.10", + "isAccessible": true, + "latency": 25.0085, + "port": 443 + }, + { + "ipAddress": "23.215.102.42", + "isAccessible": true, + "latency": 25.136200000000002, + "port": 80 + }, + { + "ipAddress": "23.215.102.42", + "isAccessible": true, + "latency": 25.0085, + "port": 443 + } + ] + }, + { + "domainName": "www.microsoft.com", + "endpointDetails": [ + { + "ipAddress": "23.49.13.56", + "isAccessible": true, + "latency": 7.9229, + "port": 80 + }, + { + "ipAddress": "23.49.13.56", + "isAccessible": true, + "latency": 8.4871, + "port": 443 + } + ] + }, + { + "domainName": "crl3.digicert.com", + "endpointDetails": [ + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 5.4074, + "port": 80 + }, + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 5.577, + "port": 443 + } + ] + }, + { + "domainName": "ocsp.digicert.com", + "endpointDetails": [ + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 6.8989, + "port": 80 + }, + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 5.667400000000001, + "port": 443 + } + ] + }, + { + "domainName": "cacerts.digicert.com", + "endpointDetails": [ + { + "ipAddress": "104.18.11.39", + "isAccessible": true, + "latency": 10.772400000000001, + "port": 80 + }, + { + "ipAddress": "104.18.11.39", + "isAccessible": true, + "latency": 10.7705, + "port": 443 + }, + { + "ipAddress": "104.18.10.39", + "isAccessible": true, + "latency": 10.772400000000001, + "port": 80 + }, + { + "ipAddress": "104.18.10.39", + "isAccessible": true, + "latency": 10.7705, + "port": 443 + } + ] + }, + { + "domainName": "www.thawte.com", + "endpointDetails": [ + { + "ipAddress": "54.69.98.161", + "isAccessible": true, + "latency": 47.532900000000005, + "port": 80 + }, + { + "ipAddress": "54.69.98.161", + "isAccessible": true, + "latency": 48.5362, + "port": 443 + }, + { + "ipAddress": "35.167.62.148", + "isAccessible": true, + "latency": 47.532900000000005, + "port": 80 + }, + { + "ipAddress": "35.167.62.148", + "isAccessible": true, + "latency": 48.5362, + "port": 443 + } + ] + } + ] + } + ] + } + } + }, + "operationId": "AppServiceEnvironments_GetOutboundNetworkDependenciesEndpoints", + "title": "Get the network endpoints of all outbound dependencies of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json new file mode 100644 index 000000000000..72613449fbd3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetScmAllowed", + "title": "Get SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json new file mode 100644 index 000000000000..bf88b60fa69c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetScmAllowedSlot", + "title": "Get SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json new file mode 100644 index 000000000000..4202f784c05f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetFtpAllowedSlot", + "title": "Get FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json new file mode 100644 index 000000000000..402e1cbfdcdc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetFtpAllowed", + "title": "Get FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json new file mode 100644 index 000000000000..15abbb5b39cd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-06-01-preview", + "metadataName": "default", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + } + }, + "operationId": "ResourceHealthMetadata_GetBySite", + "title": "Get ResourceHealthMetadata" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json new file mode 100644 index 000000000000..1a37caa1de21 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-06-01-preview", + "metadataName": "default", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + } + }, + "operationId": "ResourceHealthMetadata_GetBySiteSlot", + "title": "Get ResourceHealthMetadata" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json new file mode 100644 index 000000000000..b42442238d6d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "eastus-silo", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "westus", + "provisioningState": "Succeeded" + } + } + } + }, + "operationId": "ServerFarmSilos_GetServerFarmSilo", + "title": "Get App Service plan silo" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json new file mode 100644 index 000000000000..efd05b3a09fc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_Get", + "title": "Get Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json new file mode 100644 index 000000000000..12afdcc16f9c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_GetSlot", + "title": "Get Site Certificate for a slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json new file mode 100644 index 000000000000..28fe48d43182 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json @@ -0,0 +1,72 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetConfiguration", + "title": "Get Site Config" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json new file mode 100644 index 000000000000..1bad1186bff6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json @@ -0,0 +1,47 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 0, + "numberOfInstancesSuccessful": 1, + "status": "RuntimeSuccessful" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 1, + "numberOfInstancesSuccessful": 0, + "status": "RuntimeStarting" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetProductionSiteDeploymentStatus", + "title": "Get Deployment Status" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json new file mode 100644 index 000000000000..25ab49b3af10 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/slots/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 0, + "numberOfInstancesSuccessful": 1, + "status": "RuntimeSuccessful" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/slots/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 1, + "numberOfInstancesSuccessful": 0, + "status": "RuntimeStarting" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetSlotSiteDeploymentStatusSlot", + "title": "Get Deployment Status Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json new file mode 100644 index 000000000000..96ad3e29b4f1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-06-01-preview", + "instanceId": "134987120", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "134987120", + "type": "Microsoft.Web/sites/instances", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging/instances/134987120", + "properties": { + "containers": { + "c1": { + "currentTimeStamp": "2013-10-21T13:28:06.419Z" + } + }, + "detectorUrl": "testsec579", + "state": "READY", + "statusUrl": "https://sampleurl" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetInstanceInfo", + "title": "Get site instance info" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json new file mode 100644 index 000000000000..bb8c0e70603f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-06-01-preview", + "instanceId": "134987120", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "134987120", + "type": "Microsoft.Web/sites/instances", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging/instances/134987120", + "properties": { + "containers": { + "c1": { + "currentTimeStamp": "2013-10-21T13:28:06.419Z" + } + }, + "detectorUrl": "testsec579", + "state": "READY", + "statusUrl": "https://sampleurl" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetInstanceInfoSlot", + "title": "Get site instance info" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json new file mode 100644 index 000000000000..591b6de7214a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateEndpointConnection", + "title": "Get a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json new file mode 100644 index 000000000000..93fff1442688 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetPrivateEndpointConnectionList", + "title": "Get a list of private endpoint connections associated with a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json new file mode 100644 index 000000000000..e16152ab2258 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slot/stage/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateEndpointConnectionSlot", + "title": "Get a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json new file mode 100644 index 000000000000..ec5ccbcbb61c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetPrivateEndpointConnection", + "title": "Get a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json new file mode 100644 index 000000000000..83d9a9dbcb3f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "site", + "type": "Microsoft.Web/sites/privateLinkResources", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateLinkResources/site", + "properties": { + "groupId": "sites", + "requiredMembers": [ + "sites" + ], + "requiredZoneNames": [ + "privatelink.testsite.azurewebsites.net" + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetPrivateLinkResources", + "title": "Get private link resources of a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json new file mode 100644 index 000000000000..bbac13c8735d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "site", + "type": "Microsoft.Web/sites/privateLinkResources", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateLinkResources/site", + "properties": { + "groupId": "sites", + "requiredMembers": [ + "sites" + ], + "requiredZoneNames": [ + "privatelink.testsite.azurewebsites.net" + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateLinkResourcesSlot", + "title": "Get private link resources of a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json new file mode 100644 index 000000000000..8a6bd4993362 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "site", + "type": "Microsoft.Web/sites/privateLinkResources", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateLinkResources/site", + "properties": { + "groupId": "sites", + "requiredMembers": [ + "sites" + ], + "requiredZoneNames": [ + "privatelink.testsite.azurewebsites.net" + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateLinkResources", + "title": "Get private link resources of a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json index acb65ad7ac63..d047d20672ac 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json @@ -21,5 +21,7 @@ } } } - } + }, + "operationId": "SiteSilos_GetSiteSilo", + "title": "Get site silo" } diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json new file mode 100644 index 000000000000..d813f46f90a8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json @@ -0,0 +1,45 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [ + { + "backendResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.ApiManagement/service/apimService0", + "createdOn": "2022-03-27T04:57:24.8058474", + "provisioningState": "Succeeded", + "region": null + } + ], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/repo", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSite", + "title": "Get details for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json new file mode 100644 index 000000000000..e530b7ec83b4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "basicAuthName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/basicAuth/default", + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "secretState": "Password", + "secretUrl": null + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBasicAuth", + "title": "Gets the basic auth properties for a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json new file mode 100644 index 000000000000..014b1556e51f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12", + "properties": { + "buildId": "12", + "createdTimeUtc": "2020-03-04T17:33:11.641Z", + "hostname": "happy-sea-15afae3e-12.westus2.azurestaticwebsites.net", + "lastUpdatedOn": "2020-03-04T17:33:11.641Z", + "linkedBackends": [ + { + "backendResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.ApiManagement/service/apimService0", + "createdOn": "2022-03-27T04:57:24.8058474", + "provisioningState": "Succeeded", + "region": null + } + ], + "pullRequestTitle": "Update README.md", + "sourceBranch": "pr-branch", + "status": "Uploading", + "userProvidedFunctionApps": null + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSiteBuild", + "title": "Get a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..5bc9c725aa35 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnection", + "title": "Get overview of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json new file mode 100644 index 000000000000..e38e44515bd0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnectionWithDetails", + "title": "Get details of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json new file mode 100644 index 000000000000..bb1c989f4cdf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnections", + "title": "List overviews of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json new file mode 100644 index 000000000000..da9c9ec57680 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnectionsWithDetails", + "title": "List full details of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json new file mode 100644 index 000000000000..9530f9d4e209 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default", + "properties": { + "buildId": "default", + "createdTimeUtc": "2020-03-04T17:33:11.641Z", + "hostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "lastUpdatedOn": "2020-03-04T17:33:11.641Z", + "linkedBackends": [], + "pullRequestTitle": null, + "sourceBranch": "demo", + "status": "Ready", + "userProvidedFunctionApps": null + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12", + "properties": { + "buildId": "12", + "createdTimeUtc": "2020-03-04T17:33:11.641Z", + "hostname": "happy-sea-15afae3e-12.westus2.azurestaticwebsites.net", + "lastUpdatedOn": "2020-03-04T17:33:11.641Z", + "linkedBackends": [ + { + "backendResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.ApiManagement/service/apimService0", + "createdOn": "2022-03-27T04:57:24.8058474", + "provisioningState": "Succeeded", + "region": null + } + ], + "pullRequestTitle": "Update README.md", + "sourceBranch": "demo-patch2", + "status": "Ready", + "userProvidedFunctionApps": null + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSiteBuilds", + "title": "Get all builds for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json new file mode 100644 index 000000000000..b9ce2f6b6fbb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + } + } + }, + "operationId": "StaticSites_GetStaticSiteCustomDomain", + "title": "Get custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json new file mode 100644 index 000000000000..1344c9aef228 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteCustomDomains", + "title": "List custom domains for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..4a39530ee3b5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnection", + "title": "Get overview of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json new file mode 100644 index 000000000000..c8247271d4e4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnectionWithDetails", + "title": "Get details of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json new file mode 100644 index 000000000000..8f167c85b18c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnections", + "title": "List overviews of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json new file mode 100644 index 000000000000..2be29e5da388 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json @@ -0,0 +1,43 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnectionsWithDetails", + "title": "List full details of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json new file mode 100644 index 000000000000..2e9bda077b56 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json @@ -0,0 +1,42 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/repo", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Standard", + "tier": "Standard" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSitesByResourceGroup", + "title": "Get static sites for a resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json new file mode 100644 index 000000000000..2367315ba428 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json @@ -0,0 +1,13 @@ +{ + "parameters": { + "operationId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab5d5", + "api-version": "2026-06-01-preview", + "location": "West US", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "204": {} + }, + "operationId": "Global_GetSubscriptionOperationWithAsyncResponse", + "title": "Gets an operation in a subscription and given region" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json new file mode 100644 index 000000000000..c7b18f2993cb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "location": "West US", + "quotaType": "regional", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": { + "localizedValue": "Cores usage in West US", + "value": "Cores usage in West US" + }, + "currentValue": 55, + "limit": 250, + "unit": "Core Count" + } + ] + }, + "headers": {} + } + }, + "operationId": "GetUsagesInLocation_list", + "title": "Get usages in location for subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json new file mode 100644 index 000000000000..42732b98db5a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppForStaticSite", + "title": "Get details of the user provided function app registered with a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json new file mode 100644 index 000000000000..448e2b2d2662 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppForStaticSiteBuild", + "title": "Get details of the user provided function app registered with a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json new file mode 100644 index 000000000000..1983f93fe0eb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppsForStaticSite", + "title": "Get details of the user provided function apps registered with a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json new file mode 100644 index 000000000000..260e4afcc792 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppsForStaticSiteBuild", + "title": "Get details of the user provided function apps registered with a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json new file mode 100644 index 000000000000..12d828b27405 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json @@ -0,0 +1,135 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "sku": "Standard", + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_Get", + "title": "Get Web App" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json new file mode 100644 index 000000000000..834c6375f44a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json @@ -0,0 +1,49 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "backupId": "12345", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/backups/12345", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-05T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetBackupStatus", + "title": "Get web app backup" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json new file mode 100644 index 000000000000..304109d53521 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json @@ -0,0 +1,77 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "backupId": "12345", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "request": { + "properties": { + "backupName": "abcdwe", + "backupSchedule": { + "frequencyInterval": 7, + "frequencyUnit": "Day", + "keepAtLeastOneBackup": true, + "retentionPeriodInDays": 30, + "startTime": "2022-09-02T17:33:11.641Z" + }, + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "enabled": true, + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=" + } + } + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/backups/12345", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-05T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBackupStatusSecrets", + "title": "Get web app backup with secrets" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json new file mode 100644 index 000000000000..20718f83c2b5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json @@ -0,0 +1,131 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "sku": "Standard", + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_GetSlot", + "title": "Get Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json new file mode 100644 index 000000000000..3c67121e1114 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json @@ -0,0 +1,2917 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/dotnet", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET 5", + "minorVersions": [ + { + "displayText": ".NET 5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|5.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "v5.0" + } + }, + "value": "5" + } + ], + "value": "5" + }, + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1" + } + }, + "value": "3.1" + }, + { + "displayText": ".NET Core 3.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.0" + } + }, + "value": "3.0" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2" + } + }, + "value": "2.2" + }, + { + "displayText": ".NET Core 2.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.1" + } + }, + "value": "2.1" + }, + { + "displayText": ".NET Core 2.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.0" + } + }, + "value": "2.0" + } + ], + "value": "dotnetcore2" + }, + { + "displayText": ".NET Core 1", + "minorVersions": [ + { + "displayText": ".NET Core 1.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.1" + } + }, + "value": "1.1" + }, + { + "displayText": ".NET Core 1.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.0" + } + }, + "value": "1.0" + } + ], + "value": "1" + }, + { + "displayText": "ASP.NET V4", + "minorVersions": [ + { + "displayText": "ASP.NET V4.8", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v4.0" + } + }, + "value": "v4.8" + } + ], + "value": "v4" + }, + { + "displayText": "ASP.NET V3", + "minorVersions": [ + { + "displayText": "ASP.NET V3.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v2.0" + } + }, + "value": "v3.5" + } + ], + "value": "v3" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/node", + "properties": { + "displayText": "Node", + "majorVersions": [ + { + "displayText": "Node LTS", + "minorVersions": [ + { + "displayText": "Node LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|lts" + } + }, + "value": "lts" + } + ], + "value": "lts" + }, + { + "displayText": "Node 14", + "minorVersions": [ + { + "displayText": "Node 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2023-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|14-lts" + } + }, + "value": "14-lts" + } + ], + "value": "14" + }, + { + "displayText": "Node 12", + "minorVersions": [ + { + "displayText": "Node 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|12-lts" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "12.13.0" + } + }, + "value": "12-lts" + }, + { + "displayText": "Node 12.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": true, + "runtimeVersion": "NODE|12.9" + } + }, + "value": "12.9" + } + ], + "value": "12" + }, + { + "displayText": "Node 10", + "minorVersions": [ + { + "displayText": "Node 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10-lts" + } + }, + "value": "10-LTS" + }, + { + "displayText": "Node 10.16", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.16" + } + }, + "value": "10.16" + }, + { + "displayText": "Node 10.15", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.15.2" + } + }, + "value": "10.15" + }, + { + "displayText": "Node 10.14", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.14" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.14.1" + } + }, + "value": "10.14" + }, + { + "displayText": "Node 10.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.12" + } + }, + "value": "10.12" + }, + { + "displayText": "Node 10.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.10" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.0.0" + } + }, + "value": "10.10" + }, + { + "displayText": "Node 10.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.6.0" + } + }, + "value": "10.6" + }, + { + "displayText": "Node 10.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.1" + } + }, + "value": "10.1" + } + ], + "value": "10" + }, + { + "displayText": "Node 9", + "minorVersions": [ + { + "displayText": "Node 9.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|9.4" + } + }, + "value": "9.4" + } + ], + "value": "9" + }, + { + "displayText": "Node 8", + "minorVersions": [ + { + "displayText": "Node 8 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8-lts" + } + }, + "value": "8-lts" + }, + { + "displayText": "Node 8.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.12" + } + }, + "value": "8.12" + }, + { + "displayText": "Node 8.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.11" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.11" + } + }, + "value": "8.11" + }, + { + "displayText": "Node 8.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.10" + } + }, + "value": "8.10" + }, + { + "displayText": "Node 8.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.9" + } + }, + "value": "8.9" + }, + { + "displayText": "Node 8.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.8" + } + }, + "value": "8.8" + }, + { + "displayText": "Node 8.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Node 8.4", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.4" + } + }, + "value": "8.4" + }, + { + "displayText": "Node 8.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.2" + } + }, + "value": "8.2" + }, + { + "displayText": "Node 8.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.1.4" + } + }, + "value": "8.1" + }, + { + "displayText": "Node 8.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.0" + } + }, + "value": "8.0" + } + ], + "value": "8" + }, + { + "displayText": "Node 7", + "minorVersions": [ + { + "displayText": "Node 7.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2017-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.10.1" + } + }, + "value": "7.10" + } + ], + "value": "7" + }, + { + "displayText": "Node 6", + "minorVersions": [ + { + "displayText": "Node 6 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6-lts" + } + }, + "value": "6-LTS" + }, + { + "displayText": "Node 6.12", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.12" + } + }, + "value": "6.12" + }, + { + "displayText": "Node 6.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.11" + } + }, + "value": "6.11" + }, + { + "displayText": "Node 6.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.10" + } + }, + "value": "6.10" + }, + { + "displayText": "Node 6.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.9.5" + } + }, + "value": "6.9" + }, + { + "displayText": "Node 6.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.6" + } + }, + "value": "6.6" + }, + { + "displayText": "Node 6.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.5.0" + } + }, + "value": "6.5" + }, + { + "displayText": "Node 6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.2" + } + }, + "value": "6.2" + } + ], + "value": "6" + }, + { + "displayText": "Node 4", + "minorVersions": [ + { + "displayText": "Node 4.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.8" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.8" + } + }, + "value": "4.8" + }, + { + "displayText": "Node 4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.5" + } + }, + "value": "4.5" + }, + { + "displayText": "Node 4.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.4" + } + }, + "value": "4.4" + } + ], + "value": "4" + } + ], + "preferredOs": "Linux", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/python", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.8" + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.7" + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.4.0" + } + }, + "value": "3.6" + } + ], + "value": "3" + }, + { + "displayText": "Python 2", + "minorVersions": [ + { + "displayText": "Python 2.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|2.7" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.7.3" + } + }, + "value": "2.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "php", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/php", + "properties": { + "displayText": "PHP", + "majorVersions": [ + { + "displayText": "PHP 7", + "minorVersions": [ + { + "displayText": "PHP 7.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.4" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.4" + } + }, + "value": "7.4" + }, + { + "displayText": "PHP 7.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.3" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.3" + } + }, + "value": "7.3" + }, + { + "displayText": "PHP 7.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.2" + } + }, + "value": "7.2" + }, + { + "displayText": "PHP 7.1", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.1" + } + }, + "value": "7.1" + }, + { + "displayText": "7.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.0" + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PHP 5", + "minorVersions": [ + { + "displayText": "PHP 5.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|5.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "5.6" + } + }, + "value": "5.6" + } + ], + "value": "5" + } + ], + "preferredOs": "Linux", + "value": "php" + } + }, + { + "name": "ruby", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/ruby", + "properties": { + "displayText": "Ruby", + "majorVersions": [ + { + "displayText": "Ruby 2", + "minorVersions": [ + { + "displayText": "Ruby 2.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6" + } + }, + "value": "2.6" + }, + { + "displayText": "Ruby 2.6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6.2" + } + }, + "value": "2.6.2" + }, + { + "displayText": "Ruby 2.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5" + } + }, + "value": "2.5" + }, + { + "displayText": "Ruby 2.5.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5.5" + } + }, + "value": "2.5.5" + }, + { + "displayText": "Ruby 2.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4" + } + }, + "value": "2.4" + }, + { + "displayText": "Ruby 2.4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4.5" + } + }, + "value": "2.4.5" + }, + { + "displayText": "Ruby 2.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3" + } + }, + "value": "2.3" + }, + { + "displayText": "Ruby 2.3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.8" + } + }, + "value": "2.3.8" + }, + { + "displayText": "Ruby 2.3.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.3" + } + }, + "value": "2.3.3" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "ruby" + } + }, + { + "name": "java", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/java", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11" + } + }, + "value": "11.0" + }, + { + "displayText": "Java 11.0.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java 11.0.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java 11.0.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.5_ZULU" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java 11.0.3", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.3_ZULU" + } + }, + "value": "11.0.3" + }, + { + "displayText": "Java 11.0.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.2_ZULU" + } + }, + "value": "11.0.2" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8" + } + }, + "value": "8.0" + }, + { + "displayText": "Java 1.8.0_252", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_252" + } + }, + "value": "8.0.252" + }, + { + "displayText": "Java 1.8.0_242", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_242" + } + }, + "value": "8.0.242" + }, + { + "displayText": "Java 1.8.0_232", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_232_ZULU" + } + }, + "value": "8.0.232" + }, + { + "displayText": "Java 1.8.0_212", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_212_ZULU" + } + }, + "value": "8.0.212" + }, + { + "displayText": "Java 1.8.0_202", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202_ZULU" + } + }, + "value": "8.0.202" + }, + { + "displayText": "Java 1.8.0_202 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202" + } + }, + "value": "8.0.202 (Oracle)" + }, + { + "displayText": "Java 1.8.0_181", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181_ZULU" + } + }, + "value": "8.0.181" + }, + { + "displayText": "Java 1.8.0_181 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181" + } + }, + "value": "8.0.181 (Oracle)" + }, + { + "displayText": "Java 1.8.0_172", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172_ZULU" + } + }, + "value": "8.0.172" + }, + { + "displayText": "Java 1.8.0_172 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172" + } + }, + "value": "8.0.172 (Oracle)" + }, + { + "displayText": "Java 1.8.0_144", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_144" + } + }, + "value": "8.0.144" + }, + { + "displayText": "Java 1.8.0_111 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_111" + } + }, + "value": "8.0.111 (Oracle)" + }, + { + "displayText": "Java 1.8.0_102", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_102" + } + }, + "value": "8.0.102" + }, + { + "displayText": "Java 1.8.0_92", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_92" + } + }, + "value": "8.0.92" + }, + { + "displayText": "Java 1.8.0_73 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_73" + } + }, + "value": "8.0.73 (Oracle)" + }, + { + "displayText": "Java 1.8.0_60 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_60" + } + }, + "value": "8.0.60 (Oracle)" + }, + { + "displayText": "Java 1.8.0_25 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_25" + } + }, + "value": "8.0.25 (Oracle)" + } + ], + "value": "8" + }, + { + "displayText": "Java 7", + "minorVersions": [ + { + "displayText": "Java 7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isAutoUpdate": true, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7" + } + }, + "value": "7.0" + }, + { + "displayText": "Java 1.7.0_262", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_262_ZULU" + } + }, + "value": "7.0.262" + }, + { + "displayText": "Java 1.7.0_242", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_242_ZULU" + } + }, + "value": "7.0.242" + }, + { + "displayText": "Java 1.7.0_222", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_222_ZULU" + } + }, + "value": "7.0.222" + }, + { + "displayText": "Java 1.7.0_191", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_191_ZULU" + } + }, + "value": "7.0.191" + }, + { + "displayText": "Java 1.7.0_80 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_80" + } + }, + "value": "7.0.80 (Oracle)" + }, + { + "displayText": "Java 1.7.0_71 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_71" + } + }, + "value": "7.0.71 (Oracle)" + }, + { + "displayText": "Java 1.7.0_51 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_51" + } + }, + "value": "7.0.51 (Oracle)" + } + ], + "value": "7" + } + ], + "preferredOs": "Linux", + "value": "java" + } + }, + { + "name": "javacontainers", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/javacontainers", + "properties": { + "displayText": "Java Containers", + "majorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "minorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "JAVA|11-java11", + "java8Runtime": "JAVA|8-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "JAVA", + "javaContainerVersion": "SE" + } + }, + "value": "SE" + }, + { + "displayText": "Java SE 11.0.7", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java SE 11.0.6", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java SE 11.0.5", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.5" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java SE 8u252", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u252" + } + }, + "value": "1.8.252" + }, + { + "displayText": "Java SE 8u242", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u242" + } + }, + "value": "1.8.242" + }, + { + "displayText": "Java SE 8u232", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u232" + } + }, + "value": "1.8.232" + } + ], + "value": "javase" + }, + { + "displayText": "JBoss EAP", + "minorVersions": [ + { + "displayText": "JBoss EAP 7.2", + "stackSettings": { + "linuxContainerSettings": { + "isPreview": true, + "java8Runtime": "JBOSSEAP|7.2-java8" + } + }, + "value": "7.2" + } + ], + "value": "jbosseap" + }, + { + "displayText": "Tomcat 9.0", + "minorVersions": [ + { + "displayText": "Tomcat 9.0", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|9.0-java11", + "java8Runtime": "TOMCAT|9.0-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0" + } + }, + "value": "9.0" + }, + { + "displayText": "Tomcat 9.0.37", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.37-java11", + "java8Runtime": "TOMCAT|9.0.37-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.37" + } + }, + "value": "9.0.37" + }, + { + "displayText": "Tomcat 9.0.33", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.33-java11", + "java8Runtime": "TOMCAT|9.0.33-java8" + } + }, + "value": "9.0.33" + }, + { + "displayText": "Tomcat 9.0.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.31" + } + }, + "value": "9.0.31" + }, + { + "displayText": "Tomcat 9.0.27", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.27" + } + }, + "value": "9.0.27" + }, + { + "displayText": "Tomcat 9.0.21", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.21" + } + }, + "value": "9.0.21" + }, + { + "displayText": "Tomcat 9.0.20", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.20-java11", + "java8Runtime": "TOMCAT|9.0.20-java8" + } + }, + "value": "9.0.20" + }, + { + "displayText": "Tomcat 9.0.14", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.14" + } + }, + "value": "9.0.14" + }, + { + "displayText": "Tomcat 9.0.12", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.12" + } + }, + "value": "9.0.12" + }, + { + "displayText": "Tomcat 9.0.8", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.8" + } + }, + "value": "9.0.8" + }, + { + "displayText": "Tomcat 9.0.0", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.0" + } + }, + "value": "9.0.0" + } + ], + "value": "tomcat9.0" + }, + { + "displayText": "Tomcat 8.5", + "minorVersions": [ + { + "displayText": "Tomcat 8.5", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|8.5-java11", + "java8Runtime": "TOMCAT|8.5-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Tomcat 8.5.6", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.6" + } + }, + "value": "8.5.6" + }, + { + "displayText": "Tomcat 8.5.57", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.57-java11", + "java8Runtime": "TOMCAT|8.5.57-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.57" + } + }, + "value": "8.5.57" + }, + { + "displayText": "Tomcat 8.5.53", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.53-java11", + "java8Runtime": "TOMCAT|8.5.53-java8" + } + }, + "value": "8.5.53" + }, + { + "displayText": "Tomcat 8.5.51", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.51" + } + }, + "value": "8.5.51" + }, + { + "displayText": "Tomcat 8.5.47", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.47" + } + }, + "value": "8.5.47" + }, + { + "displayText": "Tomcat 8.5.42", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.42" + } + }, + "value": "8.5.42" + }, + { + "displayText": "Tomcat 8.5.41", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.41-java11", + "java8Runtime": "TOMCAT|8.5.41-java8" + } + }, + "value": "8.5.41" + }, + { + "displayText": "Tomcat 8.5.37", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.37" + } + }, + "value": "8.5.37" + }, + { + "displayText": "Tomcat 8.5.34", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.34" + } + }, + "value": "8.5.34" + }, + { + "displayText": "Tomcat 8.5.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.31" + } + }, + "value": "8.5.31" + }, + { + "displayText": "Tomcat 8.5.20", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.20" + } + }, + "value": "8.5.20" + } + ], + "value": "tomcat8.5" + }, + { + "displayText": "Tomcat 8.0", + "minorVersions": [ + { + "displayText": "Tomcat 8.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0" + } + }, + "value": "8.0" + }, + { + "displayText": "Tomcat 8.0.53", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.53" + } + }, + "value": "8.0.53" + }, + { + "displayText": "Tomcat 8.0.46", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.46" + } + }, + "value": "8.0.46" + }, + { + "displayText": "Tomcat 8.0.23", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.23" + } + }, + "value": "8.0.23" + } + ], + "value": "tomcat8.0" + }, + { + "displayText": "Tomcat 7.0", + "minorVersions": [ + { + "displayText": "Tomcat 7.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0" + } + }, + "value": "7.0" + }, + { + "displayText": "Tomcat 7.0.94", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.94" + } + }, + "value": "7.0.94" + }, + { + "displayText": "Tomcat 7.0.81", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.81" + } + }, + "value": "7.0.81" + }, + { + "displayText": "Tomcat 7.0.62", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.62" + } + }, + "value": "7.0.62" + }, + { + "displayText": "Tomcat 7.0.50", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.50" + } + }, + "value": "7.0.50" + } + ], + "value": "tomcat7.0" + }, + { + "displayText": "Jetty 9.3", + "minorVersions": [ + { + "displayText": "Jetty 9.3", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3" + } + }, + "value": "9.3" + }, + { + "displayText": "Jetty 9.3.25", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.25" + } + }, + "value": "9.3.25" + }, + { + "displayText": "Jetty 9.3.13", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.13" + } + }, + "value": "9.3.13" + } + ], + "value": "jetty9.3" + }, + { + "displayText": "Jetty 9.1", + "minorVersions": [ + { + "displayText": "Jetty 9.1", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1" + } + }, + "value": "9.1" + }, + { + "displayText": "Jetty 9.1.0", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1.0" + } + }, + "value": "9.1.0" + } + ], + "value": "jetty9.1" + }, + { + "displayText": "WildFly 14", + "minorVersions": [ + { + "displayText": "WildFly 14", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "java8Runtime": "WILDFLY|14-jre8" + } + }, + "value": "14" + }, + { + "displayText": "WildFly 14.0.1", + "stackSettings": { + "linuxContainerSettings": { + "isDeprecated": true, + "java8Runtime": "WILDFLY|14.0.1-java8" + } + }, + "value": "14.0.1" + } + ], + "value": "wildfly14" + } + ], + "value": "javacontainers" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetWebAppStacks", + "title": "Get Web App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json new file mode 100644 index 000000000000..c8f3eb45da6c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json @@ -0,0 +1,2925 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "location": "westus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/dotnet", + "location": "westus", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET 5", + "minorVersions": [ + { + "displayText": ".NET 5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|5.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "v5.0" + } + }, + "value": "5" + } + ], + "value": "5" + }, + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1" + } + }, + "value": "3.1" + }, + { + "displayText": ".NET Core 3.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.0" + } + }, + "value": "3.0" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2" + } + }, + "value": "2.2" + }, + { + "displayText": ".NET Core 2.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.1" + } + }, + "value": "2.1" + }, + { + "displayText": ".NET Core 2.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.0" + } + }, + "value": "2.0" + } + ], + "value": "dotnetcore2" + }, + { + "displayText": ".NET Core 1", + "minorVersions": [ + { + "displayText": ".NET Core 1.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.1" + } + }, + "value": "1.1" + }, + { + "displayText": ".NET Core 1.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.0" + } + }, + "value": "1.0" + } + ], + "value": "1" + }, + { + "displayText": "ASP.NET V4", + "minorVersions": [ + { + "displayText": "ASP.NET V4.8", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v4.0" + } + }, + "value": "v4.8" + } + ], + "value": "v4" + }, + { + "displayText": "ASP.NET V3", + "minorVersions": [ + { + "displayText": "ASP.NET V3.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v2.0" + } + }, + "value": "v3.5" + } + ], + "value": "v3" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/node", + "location": "westus", + "properties": { + "displayText": "Node", + "majorVersions": [ + { + "displayText": "Node LTS", + "minorVersions": [ + { + "displayText": "Node LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|lts" + } + }, + "value": "lts" + } + ], + "value": "lts" + }, + { + "displayText": "Node 14", + "minorVersions": [ + { + "displayText": "Node 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2023-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|14-lts" + } + }, + "value": "14-lts" + } + ], + "value": "14" + }, + { + "displayText": "Node 12", + "minorVersions": [ + { + "displayText": "Node 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|12-lts" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "12.13.0" + } + }, + "value": "12-lts" + }, + { + "displayText": "Node 12.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": true, + "runtimeVersion": "NODE|12.9" + } + }, + "value": "12.9" + } + ], + "value": "12" + }, + { + "displayText": "Node 10", + "minorVersions": [ + { + "displayText": "Node 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10-lts" + } + }, + "value": "10-LTS" + }, + { + "displayText": "Node 10.16", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.16" + } + }, + "value": "10.16" + }, + { + "displayText": "Node 10.15", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.15.2" + } + }, + "value": "10.15" + }, + { + "displayText": "Node 10.14", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.14" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.14.1" + } + }, + "value": "10.14" + }, + { + "displayText": "Node 10.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.12" + } + }, + "value": "10.12" + }, + { + "displayText": "Node 10.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.10" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.0.0" + } + }, + "value": "10.10" + }, + { + "displayText": "Node 10.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.6.0" + } + }, + "value": "10.6" + }, + { + "displayText": "Node 10.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.1" + } + }, + "value": "10.1" + } + ], + "value": "10" + }, + { + "displayText": "Node 9", + "minorVersions": [ + { + "displayText": "Node 9.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|9.4" + } + }, + "value": "9.4" + } + ], + "value": "9" + }, + { + "displayText": "Node 8", + "minorVersions": [ + { + "displayText": "Node 8 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8-lts" + } + }, + "value": "8-lts" + }, + { + "displayText": "Node 8.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.12" + } + }, + "value": "8.12" + }, + { + "displayText": "Node 8.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.11" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.11" + } + }, + "value": "8.11" + }, + { + "displayText": "Node 8.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.10" + } + }, + "value": "8.10" + }, + { + "displayText": "Node 8.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.9" + } + }, + "value": "8.9" + }, + { + "displayText": "Node 8.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.8" + } + }, + "value": "8.8" + }, + { + "displayText": "Node 8.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Node 8.4", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.4" + } + }, + "value": "8.4" + }, + { + "displayText": "Node 8.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.2" + } + }, + "value": "8.2" + }, + { + "displayText": "Node 8.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.1.4" + } + }, + "value": "8.1" + }, + { + "displayText": "Node 8.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.0" + } + }, + "value": "8.0" + } + ], + "value": "8" + }, + { + "displayText": "Node 7", + "minorVersions": [ + { + "displayText": "Node 7.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2017-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.10.1" + } + }, + "value": "7.10" + } + ], + "value": "7" + }, + { + "displayText": "Node 6", + "minorVersions": [ + { + "displayText": "Node 6 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6-lts" + } + }, + "value": "6-LTS" + }, + { + "displayText": "Node 6.12", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.12" + } + }, + "value": "6.12" + }, + { + "displayText": "Node 6.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.11" + } + }, + "value": "6.11" + }, + { + "displayText": "Node 6.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.10" + } + }, + "value": "6.10" + }, + { + "displayText": "Node 6.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.9.5" + } + }, + "value": "6.9" + }, + { + "displayText": "Node 6.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.6" + } + }, + "value": "6.6" + }, + { + "displayText": "Node 6.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.5.0" + } + }, + "value": "6.5" + }, + { + "displayText": "Node 6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.2" + } + }, + "value": "6.2" + } + ], + "value": "6" + }, + { + "displayText": "Node 4", + "minorVersions": [ + { + "displayText": "Node 4.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.8" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.8" + } + }, + "value": "4.8" + }, + { + "displayText": "Node 4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.5" + } + }, + "value": "4.5" + }, + { + "displayText": "Node 4.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.4" + } + }, + "value": "4.4" + } + ], + "value": "4" + } + ], + "preferredOs": "Linux", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/python", + "location": "westus", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.8" + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.7" + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.4.0" + } + }, + "value": "3.6" + } + ], + "value": "3" + }, + { + "displayText": "Python 2", + "minorVersions": [ + { + "displayText": "Python 2.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|2.7" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.7.3" + } + }, + "value": "2.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "php", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/php", + "location": "westus", + "properties": { + "displayText": "PHP", + "majorVersions": [ + { + "displayText": "PHP 7", + "minorVersions": [ + { + "displayText": "PHP 7.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.4" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.4" + } + }, + "value": "7.4" + }, + { + "displayText": "PHP 7.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.3" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.3" + } + }, + "value": "7.3" + }, + { + "displayText": "PHP 7.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.2" + } + }, + "value": "7.2" + }, + { + "displayText": "PHP 7.1", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.1" + } + }, + "value": "7.1" + }, + { + "displayText": "7.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.0" + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PHP 5", + "minorVersions": [ + { + "displayText": "PHP 5.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|5.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "5.6" + } + }, + "value": "5.6" + } + ], + "value": "5" + } + ], + "preferredOs": "Linux", + "value": "php" + } + }, + { + "name": "ruby", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/ruby", + "location": "westus", + "properties": { + "displayText": "Ruby", + "majorVersions": [ + { + "displayText": "Ruby 2", + "minorVersions": [ + { + "displayText": "Ruby 2.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6" + } + }, + "value": "2.6" + }, + { + "displayText": "Ruby 2.6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6.2" + } + }, + "value": "2.6.2" + }, + { + "displayText": "Ruby 2.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5" + } + }, + "value": "2.5" + }, + { + "displayText": "Ruby 2.5.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5.5" + } + }, + "value": "2.5.5" + }, + { + "displayText": "Ruby 2.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4" + } + }, + "value": "2.4" + }, + { + "displayText": "Ruby 2.4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4.5" + } + }, + "value": "2.4.5" + }, + { + "displayText": "Ruby 2.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3" + } + }, + "value": "2.3" + }, + { + "displayText": "Ruby 2.3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.8" + } + }, + "value": "2.3.8" + }, + { + "displayText": "Ruby 2.3.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.3" + } + }, + "value": "2.3.3" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "ruby" + } + }, + { + "name": "java", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/java", + "location": "westus", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11" + } + }, + "value": "11.0" + }, + { + "displayText": "Java 11.0.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java 11.0.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java 11.0.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.5_ZULU" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java 11.0.3", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.3_ZULU" + } + }, + "value": "11.0.3" + }, + { + "displayText": "Java 11.0.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.2_ZULU" + } + }, + "value": "11.0.2" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8" + } + }, + "value": "8.0" + }, + { + "displayText": "Java 1.8.0_252", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_252" + } + }, + "value": "8.0.252" + }, + { + "displayText": "Java 1.8.0_242", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_242" + } + }, + "value": "8.0.242" + }, + { + "displayText": "Java 1.8.0_232", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_232_ZULU" + } + }, + "value": "8.0.232" + }, + { + "displayText": "Java 1.8.0_212", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_212_ZULU" + } + }, + "value": "8.0.212" + }, + { + "displayText": "Java 1.8.0_202", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202_ZULU" + } + }, + "value": "8.0.202" + }, + { + "displayText": "Java 1.8.0_202 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202" + } + }, + "value": "8.0.202 (Oracle)" + }, + { + "displayText": "Java 1.8.0_181", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181_ZULU" + } + }, + "value": "8.0.181" + }, + { + "displayText": "Java 1.8.0_181 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181" + } + }, + "value": "8.0.181 (Oracle)" + }, + { + "displayText": "Java 1.8.0_172", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172_ZULU" + } + }, + "value": "8.0.172" + }, + { + "displayText": "Java 1.8.0_172 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172" + } + }, + "value": "8.0.172 (Oracle)" + }, + { + "displayText": "Java 1.8.0_144", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_144" + } + }, + "value": "8.0.144" + }, + { + "displayText": "Java 1.8.0_111 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_111" + } + }, + "value": "8.0.111 (Oracle)" + }, + { + "displayText": "Java 1.8.0_102", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_102" + } + }, + "value": "8.0.102" + }, + { + "displayText": "Java 1.8.0_92", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_92" + } + }, + "value": "8.0.92" + }, + { + "displayText": "Java 1.8.0_73 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_73" + } + }, + "value": "8.0.73 (Oracle)" + }, + { + "displayText": "Java 1.8.0_60 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_60" + } + }, + "value": "8.0.60 (Oracle)" + }, + { + "displayText": "Java 1.8.0_25 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_25" + } + }, + "value": "8.0.25 (Oracle)" + } + ], + "value": "8" + }, + { + "displayText": "Java 7", + "minorVersions": [ + { + "displayText": "Java 7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isAutoUpdate": true, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7" + } + }, + "value": "7.0" + }, + { + "displayText": "Java 1.7.0_262", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_262_ZULU" + } + }, + "value": "7.0.262" + }, + { + "displayText": "Java 1.7.0_242", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_242_ZULU" + } + }, + "value": "7.0.242" + }, + { + "displayText": "Java 1.7.0_222", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_222_ZULU" + } + }, + "value": "7.0.222" + }, + { + "displayText": "Java 1.7.0_191", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_191_ZULU" + } + }, + "value": "7.0.191" + }, + { + "displayText": "Java 1.7.0_80 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_80" + } + }, + "value": "7.0.80 (Oracle)" + }, + { + "displayText": "Java 1.7.0_71 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_71" + } + }, + "value": "7.0.71 (Oracle)" + }, + { + "displayText": "Java 1.7.0_51 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_51" + } + }, + "value": "7.0.51 (Oracle)" + } + ], + "value": "7" + } + ], + "preferredOs": "Linux", + "value": "java" + } + }, + { + "name": "javacontainers", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/javacontainers", + "location": "westus", + "properties": { + "displayText": "Java Containers", + "majorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "minorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "JAVA|11-java11", + "java8Runtime": "JAVA|8-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "JAVA", + "javaContainerVersion": "SE" + } + }, + "value": "SE" + }, + { + "displayText": "Java SE 11.0.7", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java SE 11.0.6", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java SE 11.0.5", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.5" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java SE 8u252", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u252" + } + }, + "value": "1.8.252" + }, + { + "displayText": "Java SE 8u242", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u242" + } + }, + "value": "1.8.242" + }, + { + "displayText": "Java SE 8u232", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u232" + } + }, + "value": "1.8.232" + } + ], + "value": "javase" + }, + { + "displayText": "JBoss EAP", + "minorVersions": [ + { + "displayText": "JBoss EAP 7.2", + "stackSettings": { + "linuxContainerSettings": { + "isPreview": true, + "java8Runtime": "JBOSSEAP|7.2-java8" + } + }, + "value": "7.2" + } + ], + "value": "jbosseap" + }, + { + "displayText": "Tomcat 9.0", + "minorVersions": [ + { + "displayText": "Tomcat 9.0", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|9.0-java11", + "java8Runtime": "TOMCAT|9.0-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0" + } + }, + "value": "9.0" + }, + { + "displayText": "Tomcat 9.0.37", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.37-java11", + "java8Runtime": "TOMCAT|9.0.37-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.37" + } + }, + "value": "9.0.37" + }, + { + "displayText": "Tomcat 9.0.33", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.33-java11", + "java8Runtime": "TOMCAT|9.0.33-java8" + } + }, + "value": "9.0.33" + }, + { + "displayText": "Tomcat 9.0.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.31" + } + }, + "value": "9.0.31" + }, + { + "displayText": "Tomcat 9.0.27", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.27" + } + }, + "value": "9.0.27" + }, + { + "displayText": "Tomcat 9.0.21", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.21" + } + }, + "value": "9.0.21" + }, + { + "displayText": "Tomcat 9.0.20", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.20-java11", + "java8Runtime": "TOMCAT|9.0.20-java8" + } + }, + "value": "9.0.20" + }, + { + "displayText": "Tomcat 9.0.14", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.14" + } + }, + "value": "9.0.14" + }, + { + "displayText": "Tomcat 9.0.12", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.12" + } + }, + "value": "9.0.12" + }, + { + "displayText": "Tomcat 9.0.8", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.8" + } + }, + "value": "9.0.8" + }, + { + "displayText": "Tomcat 9.0.0", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.0" + } + }, + "value": "9.0.0" + } + ], + "value": "tomcat9.0" + }, + { + "displayText": "Tomcat 8.5", + "minorVersions": [ + { + "displayText": "Tomcat 8.5", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|8.5-java11", + "java8Runtime": "TOMCAT|8.5-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Tomcat 8.5.6", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.6" + } + }, + "value": "8.5.6" + }, + { + "displayText": "Tomcat 8.5.57", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.57-java11", + "java8Runtime": "TOMCAT|8.5.57-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.57" + } + }, + "value": "8.5.57" + }, + { + "displayText": "Tomcat 8.5.53", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.53-java11", + "java8Runtime": "TOMCAT|8.5.53-java8" + } + }, + "value": "8.5.53" + }, + { + "displayText": "Tomcat 8.5.51", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.51" + } + }, + "value": "8.5.51" + }, + { + "displayText": "Tomcat 8.5.47", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.47" + } + }, + "value": "8.5.47" + }, + { + "displayText": "Tomcat 8.5.42", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.42" + } + }, + "value": "8.5.42" + }, + { + "displayText": "Tomcat 8.5.41", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.41-java11", + "java8Runtime": "TOMCAT|8.5.41-java8" + } + }, + "value": "8.5.41" + }, + { + "displayText": "Tomcat 8.5.37", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.37" + } + }, + "value": "8.5.37" + }, + { + "displayText": "Tomcat 8.5.34", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.34" + } + }, + "value": "8.5.34" + }, + { + "displayText": "Tomcat 8.5.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.31" + } + }, + "value": "8.5.31" + }, + { + "displayText": "Tomcat 8.5.20", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.20" + } + }, + "value": "8.5.20" + } + ], + "value": "tomcat8.5" + }, + { + "displayText": "Tomcat 8.0", + "minorVersions": [ + { + "displayText": "Tomcat 8.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0" + } + }, + "value": "8.0" + }, + { + "displayText": "Tomcat 8.0.53", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.53" + } + }, + "value": "8.0.53" + }, + { + "displayText": "Tomcat 8.0.46", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.46" + } + }, + "value": "8.0.46" + }, + { + "displayText": "Tomcat 8.0.23", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.23" + } + }, + "value": "8.0.23" + } + ], + "value": "tomcat8.0" + }, + { + "displayText": "Tomcat 7.0", + "minorVersions": [ + { + "displayText": "Tomcat 7.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0" + } + }, + "value": "7.0" + }, + { + "displayText": "Tomcat 7.0.94", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.94" + } + }, + "value": "7.0.94" + }, + { + "displayText": "Tomcat 7.0.81", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.81" + } + }, + "value": "7.0.81" + }, + { + "displayText": "Tomcat 7.0.62", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.62" + } + }, + "value": "7.0.62" + }, + { + "displayText": "Tomcat 7.0.50", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.50" + } + }, + "value": "7.0.50" + } + ], + "value": "tomcat7.0" + }, + { + "displayText": "Jetty 9.3", + "minorVersions": [ + { + "displayText": "Jetty 9.3", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3" + } + }, + "value": "9.3" + }, + { + "displayText": "Jetty 9.3.25", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.25" + } + }, + "value": "9.3.25" + }, + { + "displayText": "Jetty 9.3.13", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.13" + } + }, + "value": "9.3.13" + } + ], + "value": "jetty9.3" + }, + { + "displayText": "Jetty 9.1", + "minorVersions": [ + { + "displayText": "Jetty 9.1", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1" + } + }, + "value": "9.1" + }, + { + "displayText": "Jetty 9.1.0", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1.0" + } + }, + "value": "9.1.0" + } + ], + "value": "jetty9.1" + }, + { + "displayText": "WildFly 14", + "minorVersions": [ + { + "displayText": "WildFly 14", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "java8Runtime": "WILDFLY|14-jre8" + } + }, + "value": "14" + }, + { + "displayText": "WildFly 14.0.1", + "stackSettings": { + "linuxContainerSettings": { + "isDeprecated": true, + "java8Runtime": "WILDFLY|14.0.1-java8" + } + }, + "value": "14.0.1" + } + ], + "value": "wildfly14" + } + ], + "value": "javacontainers" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetWebAppStacksForLocation", + "title": "Get Locations Web App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json new file mode 100644 index 000000000000..3e3660ce7a85 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperation", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json new file mode 100644 index 000000000000..65d3baa2fcdb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperationSlot", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json new file mode 100644 index 000000000000..2b5800ec71aa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperationSlotV2", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json new file mode 100644 index 000000000000..81e649b97485 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperationV2", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json new file mode 100644 index 000000000000..607365bd0c81 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTraces", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json new file mode 100644 index 000000000000..ea580bedde83 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTracesSlotV2", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json new file mode 100644 index 000000000000..bd20d9f5d97c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTracesSlot", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json new file mode 100644 index 000000000000..3c82e78fec9b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTracesV2", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json new file mode 100644 index 000000000000..c2803170d857 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "stateful1" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/stateful1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/stateful1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/office365" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/connections/office365-1" + }, + "connectionRuntimeUrl": "string" + } + } + }, + "workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + } + } + }, + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_GetWorkflow", + "title": "GET a workflow" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json new file mode 100644 index 000000000000..93a4cbfe688d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "stateful1" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/stateful1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/stateful1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/office365" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/connections/office365-1" + }, + "connectionRuntimeUrl": "string" + } + } + }, + "workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + } + } + }, + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_GetInstanceWorkflowSlot", + "title": "GET a workflow Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json new file mode 100644 index 000000000000..c760f64a2bca --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "name": "testkubeenv", + "api-version": "2026-06-01-preview", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "kind": "kubernetes", + "kubeEnvironmentEnvelope": { + "location": "East US", + "properties": { + "staticIp": "1.2.3.4" + } + }, + "location": "East US", + "resourceGroupName": "examplerg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + }, + "201": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "InitializationInProgress", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + } + }, + "operationId": "KubeEnvironments_CreateOrUpdate", + "title": "Create kube environments" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json new file mode 100644 index 000000000000..7d6f7886e53b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "examplekenv", + "api-version": "2026-06-01-preview", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "kind": "kubernetes", + "location": "East US", + "resourceGroupName": "examplerg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-06-01-preview" + } + }, + "204": {} + }, + "operationId": "KubeEnvironments_Delete", + "title": "Delete kube environment by name" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json new file mode 100644 index 000000000000..afebc690e2b2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "jlaw-demo1", + "api-version": "2026-06-01-preview", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "location": "North Central US", + "resourceGroupName": "examplerg", + "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" + }, + "responses": { + "200": { + "body": { + "name": "jlaw-demo1", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/jlaw-demo1", + "location": "North Central US", + "properties": { + "aksResourceID": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ContainerService/managedClusters/jlaw-demo1", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "jlaw-demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "20.42.33.145" + }, + "tags": {} + } + } + }, + "operationId": "KubeEnvironments_Get", + "title": "Get kube environments by name" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json new file mode 100644 index 000000000000..bad3795e7801 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json @@ -0,0 +1,58 @@ +{ + "parameters": { + "name": "Samplek8se", + "api-version": "2026-06-01-preview", + "resourceGroupName": "examplerg", + "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "jlaw-demo1", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/jlaw-demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "jlaw-demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "20.42.33.145" + }, + "tags": {} + }, + { + "name": "demo1", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "52.142.21.61" + }, + "tags": {} + } + ] + } + } + }, + "operationId": "KubeEnvironments_ListByResourceGroup", + "title": "List kube environments by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json new file mode 100644 index 000000000000..14d33eb3ef82 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json @@ -0,0 +1,50 @@ +{ + "parameters": { + "name": "examplekenv", + "api-version": "2026-06-01-preview", + "resourceGroupName": "examplerg", + "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "jlaw-demo1", + "type": "Microsoft.Web/kubeEnvironments", + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/jlaw-demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "jlaw-demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "20.42.33.145" + }, + "tags": {} + }, + { + "name": "demo1", + "type": "Microsoft.Web/kubeEnvironments", + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/DemoRG/providers/Microsoft.Web/kubeEnvironments/demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "52.142.21.61" + }, + "tags": {} + } + ] + } + } + }, + "operationId": "KubeEnvironments_ListBySubscription", + "title": "List kube environments by subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json new file mode 100644 index 000000000000..1a0c4b662bff --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "name": "testkubeenv", + "api-version": "2026-06-01-preview", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "kind": "kubernetes", + "kubeEnvironmentEnvelope": { + "properties": { + "staticIp": "1.2.3.4" + } + }, + "location": "East US", + "resourceGroupName": "examplerg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + }, + "201": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "InitializationInProgress", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + } + }, + "operationId": "KubeEnvironments_Update", + "title": "Update kube environments" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json new file mode 100644 index 000000000000..a4634d6133e3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_LinkBackend", + "title": "Link a backend to a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json new file mode 100644 index 000000000000..b8086db931e7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_LinkBackendToBuild", + "title": "Link a backend to a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json new file mode 100644 index 000000000000..26b4f80443d3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + { + "name": "testsf7252", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServicePlans_List", + "title": "List App Service plans" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json new file mode 100644 index 000000000000..9d8e7e3f371e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + { + "name": "testsf7252", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServicePlans_ListByResourceGroup", + "title": "List App Service plans by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json new file mode 100644 index 000000000000..531cceea3ac9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appsettings", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/appsettings", + "kind": "app", + "properties": { + "Setting1": "Value1", + "Setting2": "Value2" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListApplicationSettings", + "title": "List App Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json new file mode 100644 index 000000000000..d4fac703a407 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json @@ -0,0 +1,56 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.Web/aseRegions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/aseRegions", + "properties": { + "availableOS": [ + "Windows", + "Linux", + "HyperV" + ], + "availableSku": [ + "I1v2", + "I2v2", + "I3v2" + ], + "dedicatedHost": true, + "displayName": "southcentralus", + "standard": true, + "zoneRedundant": true + } + }, + { + "type": "Microsoft.Web/aseRegions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/aseRegions", + "properties": { + "availableOS": [ + "Windows", + "Linux" + ], + "availableSku": [ + "I1v4", + "I2v2", + "I3v2" + ], + "dedicatedHost": true, + "displayName": "northcentralus", + "standard": true, + "zoneRedundant": true + } + } + ] + }, + "headers": {} + } + }, + "operationId": "ListAseRegions", + "title": "List aseregions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json new file mode 100644 index 000000000000..887e517949db --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettings", + "type": "Microsoft.Web/sites/authsettings", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettings", + "kind": "app", + "properties": { + "allowedExternalRedirectUrls": [ + "sitef6141.customdomain.net", + "sitef6141.customdomain.info" + ], + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "defaultProvider": "Google", + "enabled": true, + "runtimeVersion": "~1", + "tokenRefreshExtensionHours": 120, + "tokenStoreEnabled": true, + "unauthenticatedClientAction": "RedirectToLoginPage" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAuthSettings", + "title": "List Auth Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json new file mode 100644 index 000000000000..742fd05d3fa8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json @@ -0,0 +1,88 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettingsv2", + "type": "Microsoft.Web/sites/authsettingsv2", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettingsv2", + "kind": "app", + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAuthSettingsV2", + "title": "List Auth Settings V2" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json new file mode 100644 index 000000000000..f11aba68ec84 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Certificates_List", + "title": "List Certificates for subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json new file mode 100644 index 000000000000..153a80cb2f0f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Certificates_ListByResourceGroup", + "title": "List Certificates by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json new file mode 100644 index 000000000000..cd2d7f587847 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "mywebapp.azurewebsites.net", + "type": "Microsoft.Web/customhostnameSites", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/customhostnameSites/mywebapp.azurewebsites.net", + "properties": { + "customHostname": "mywebapp.azurewebsites.net", + "region": "West US", + "siteResourceIds": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus-rg/providers/Microsoft.Web/sites/mywebapp" + } + ] + } + }, + { + "name": "www.example.com", + "type": "Microsoft.Web/customhostnameSites", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/customhostnameSites/www.example.com", + "properties": { + "customHostname": "www.example.com", + "region": "West US 2", + "siteResourceIds": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app1" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app2" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app3" + } + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "ListCustomHostNameSites", + "title": "Get custom hostnames under subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json new file mode 100644 index 000000000000..aace4de56d23 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "hostname": "www.example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "www.example.com", + "type": "Microsoft.Web/customhostnameSites", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/customhostnameSites/www.example.com", + "properties": { + "customHostname": "www.example.com", + "region": "West US 2", + "siteResourceIds": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app1" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app2" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app3" + } + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "ListCustomHostNameSites", + "title": "Get specific custom hostname under subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json new file mode 100644 index 000000000000..c6258ca4e5d6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "location": "West US 2", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "wussite6", + "type": "Microsoft.Web/locations/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6", + "properties": { + "deletedSiteId": 9, + "deletedSiteName": "wussite6", + "deletedTimestamp": "2019-05-09T22:29:05.1337007", + "geoRegionName": "West US 2", + "kind": "app", + "resourceGroup": "rg1", + "slot": "Production", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "DeletedWebApps_ListByLocation", + "title": "List Deleted Web App by Location" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json new file mode 100644 index 000000000000..a9c4bfb2fd81 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsite", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "westus", + "priority": 1, + "weight": 500 + }, + { + "region": "eastus", + "priority": 1, + "weight": 500 + } + ], + "provisioningState": "Succeeded" + } + } + ] + } + } + }, + "operationId": "ManagedTrafficConfigs_ListManagedTrafficConfigs", + "title": "List managed traffic configurations" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json new file mode 100644 index 000000000000..fc929cf5d52c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json @@ -0,0 +1,5843 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.Web/sites/Read", + "display": { + "description": "Get the properties of a Web App", + "operation": "Get Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/Write", + "display": { + "description": "Create a new Web App or update an existing one", + "operation": "Create or Update Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/Write", + "display": { + "description": "Create a new Web App Slot or update an existing one", + "operation": "Create or Update Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/Delete", + "display": { + "description": "Delete an existing Web App", + "operation": "Delete Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/Delete", + "display": { + "description": "Delete an existing Web App Slot", + "operation": "Delete Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/config/Read", + "display": { + "description": "Get Web App Slot's configuration settings", + "operation": "Get Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/config/Read", + "display": { + "description": "Get Web App configuration settings", + "operation": "Get Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/config/list/Action", + "display": { + "description": "List Web App's security sensitive settings, such as publishing credentials, app settings and connection strings", + "operation": "List Web App Security Sensitive Settings", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/config/list/Action", + "display": { + "description": "List Web App Slot's security sensitive settings, such as publishing credentials, app settings and connection strings", + "operation": "List Web App Slot Security Sensitive Settings", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/config/Write", + "display": { + "description": "Update Web App's configuration settings", + "operation": "Update Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/config/Write", + "display": { + "description": "Update Web App Slot's configuration settings", + "operation": "Update Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/sourcecontrols/Read", + "display": { + "description": "Get Web App's source control configuration settings", + "operation": "Get Web App Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/sourcecontrols/Read", + "display": { + "description": "Get Web App Slot's source control configuration settings", + "operation": "Get Web App Slot Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/sourcecontrols/Write", + "display": { + "description": "Update Web App's source control configuration settings", + "operation": "Update Web App Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/sourcecontrols/Write", + "display": { + "description": "Update Web App Slot's source control configuration settings", + "operation": "Update Web App Slot Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/sourcecontrols/Delete", + "display": { + "description": "Delete Web App's source control configuration settings", + "operation": "Delete Web App Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/sourcecontrols/Delete", + "display": { + "description": "Delete Web App Slot's source control configuration settings", + "operation": "Delete Web App Slot Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/backup/Action", + "display": { + "description": "Create a new web app backup", + "operation": "Create Web App Backup", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/backup/Action", + "display": { + "description": "Create new Web App Slot backup.", + "operation": "Create Web App Slot Backup", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/backups/Read", + "display": { + "description": "Get the properties of a web app's backup", + "operation": "Get Web App Backup", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/backups/Read", + "display": { + "description": "Get the properties of a web app slots' backup", + "operation": "List Web App Slot Backups", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/publishxml/Action", + "display": { + "description": "Get publishing profile xml for a Web App", + "operation": "Get Web App Publishing Profile", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/publishxml/Action", + "display": { + "description": "Get publishing profile xml for Web App Slot", + "operation": "Get Web App Slot Publishing Profile", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/publish/Action", + "display": { + "description": "Publish a Web App", + "operation": "Publish Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/publish/Action", + "display": { + "description": "Publish a Web App Slot", + "operation": "Publish Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/restart/Action", + "display": { + "description": "Restart a Web App", + "operation": "Restart Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/restart/Action", + "display": { + "description": "Restart a Web App Slot", + "operation": "Restart Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/start/Action", + "display": { + "description": "Start a Web App", + "operation": "Start Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/start/Action", + "display": { + "description": "Start a Web App Slot", + "operation": "Start Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/stop/Action", + "display": { + "description": "Stop a Web App", + "operation": "Stop Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/stop/Action", + "display": { + "description": "Stop a Web App Slot", + "operation": "Stop Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slotsswap/Action", + "display": { + "description": "Swap Web App deployment slots", + "operation": "Swap Web App Slots", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/slotsswap/Action", + "display": { + "description": "Swap Web App deployment slots", + "operation": "Swap Web App Slots", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slotsdiffs/Action", + "display": { + "description": "Get differences in configuration between web app and slots", + "operation": "Get Web App Slots Differences", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/slotsdiffs/Action", + "display": { + "description": "Get differences in configuration between web app and slots", + "operation": "Get Web App Slots Differences", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/applySlotConfig/Action", + "display": { + "description": "Apply web app slot configuration from target slot to the current web app", + "operation": "Apply Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/applySlotConfig/Action", + "display": { + "description": "Apply web app slot configuration from target slot to the current slot.", + "operation": "Apply Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/resetSlotConfig/Action", + "display": { + "description": "Reset web app configuration", + "operation": "Reset Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/resetSlotConfig/Action", + "display": { + "description": "Reset web app slot configuration", + "operation": "Reset Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/Read", + "display": { + "description": "Get the properties of a Web App deployment slot", + "operation": "Get Web App Deployment Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/Read", + "display": { + "description": "Get the properties on an App Service Plan", + "operation": "Get App Service Plan", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/Write", + "display": { + "description": "Create a new App Service Plan or update an existing one", + "operation": "Create or Update App Service Plan", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/Delete", + "display": { + "description": "Delete an existing App Service Plan", + "operation": "Delete App Service Plan", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/restartSites/Action", + "display": { + "description": "Restart all Web Apps in an App Service Plan", + "operation": "Restart Web Apps", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/certificates/Read", + "display": { + "description": "Get the list of certificates.", + "operation": "Get Certificates", + "provider": "Microsoft Web Apps", + "resource": "Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/certificates/Write", + "display": { + "description": "Add a new certificate or update an existing one.", + "operation": "Add or Update Certificate", + "provider": "Microsoft Web Apps", + "resource": "Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/certificates/Delete", + "display": { + "description": "Delete an existing certificate.", + "operation": "Delete Certificate", + "provider": "Microsoft Web Apps", + "resource": "Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/aseRegions/Read", + "display": { + "description": "Get the list of ASE regions.", + "operation": "Get ASE Regions", + "provider": "Microsoft Web Apps", + "resource": "ASE Region" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/geoRegions/Read", + "display": { + "description": "Get the list of Geo regions.", + "operation": "Get Geo Regions", + "provider": "Microsoft Web Apps", + "resource": "Geo Region" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/listSitesAssignedToHostName/Read", + "display": { + "description": "Get names of sites assigned to hostname.", + "operation": "Get sites assigned to hostname", + "provider": "Microsoft Web Apps", + "resource": "Site Name" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/Read", + "display": { + "description": "Get the properties of an App Service Environment", + "operation": "Get App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/Write", + "display": { + "description": "Create a new App Service Environment or update existing one", + "operation": "Create or Update App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/Delete", + "display": { + "description": "Delete an App Service Environment", + "operation": "Delete App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/reboot/Action", + "display": { + "description": "Reboot all machines in an App Service Environment", + "operation": "Reboot an App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Read", + "display": { + "description": "Get the properties of a FrontEnd Pool in an App Service Environment", + "operation": "Get FrontEnd Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment FrontEnd Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Write", + "display": { + "description": "Create a new FrontEnd Pool in an App Service Environment or update an existing one", + "operation": "Create or Update FrontEnd Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment FrontEnd Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/workerPools/Read", + "display": { + "description": "Get the properties of a Worker Pool in an App Service Environment", + "operation": "Get Worker Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment Worker Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/workerPools/Write", + "display": { + "description": "Create a new Worker Pool in an App Service Environment or update an existing one", + "operation": "Create or Update Worker Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment Worker Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Read", + "display": { + "description": "Get the list of Connections.", + "operation": "Get Connections", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Write", + "display": { + "description": "Creates or updates a Connection.", + "operation": "Add or Update Connection", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Delete", + "display": { + "description": "Deletes a Connection.", + "operation": "Delete Connection", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Join/Action", + "display": { + "description": "Joins a Connection.", + "operation": "Join Connection", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Read", + "display": { + "description": "Get the list of Connection Gateways.", + "operation": "Get Connection Gateways", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Write", + "display": { + "description": "Creates or updates a Connection Gateway.", + "operation": "Add or Update Connection Gateways", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Delete", + "display": { + "description": "Deletes a Connection Gateway.", + "operation": "Delete Connection Gateway", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Join/Action", + "display": { + "description": "Joins a Connection Gateway.", + "operation": "Join Connection Gateway", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/recommendations/Read", + "display": { + "description": "Get the list of recommendations for subscriptions.", + "operation": "Get recommendations", + "provider": "Microsoft Web Apps", + "resource": "Recommendation" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/recommendations/Read", + "display": { + "description": "Get the list of recommendations for web app.", + "operation": "Get recommendations for web app", + "provider": "Microsoft Web Apps", + "resource": "Recommendation" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/availablestacks/read", + "display": { + "description": "Get Available Stacks.", + "operation": "Get Available Stacks", + "provider": "Microsoft Web Apps", + "resource": "Available Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/functionappstacks/read", + "display": { + "description": "Get Function App Stacks.", + "operation": "Get Function App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Function App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/webappstacks/read", + "display": { + "description": "Get Web App Stacks.", + "operation": "Get Web App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Web App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/checknameavailability/read", + "display": { + "description": "Check if resource name is available.", + "operation": "Get Check Name Availability", + "provider": "Microsoft Web Apps", + "resource": "Check Name Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/checknameavailability/read", + "display": { + "description": "Check if resource name is available for DNL apps.", + "operation": "Get Check Name Availability", + "provider": "Microsoft Web Apps", + "resource": "DNL Check Name Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/classicmobileservices/read", + "display": { + "description": "Get Classic Mobile Services.", + "operation": "Get Classic Mobile Services", + "provider": "Microsoft Web Apps", + "resource": "Classic Mobile Services" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/connections/confirmconsentcode/action", + "display": { + "description": "Confirm Connections Consent Code.", + "operation": "Confirm Connections Consent Code", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/connections/listconsentlinks/action", + "display": { + "description": "List Consent Links for Connections.", + "operation": "List Consent Links for Connections", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/deploymentlocations/read", + "display": { + "description": "Get Deployment Locations.", + "operation": "Get Deployment Locations", + "provider": "Microsoft Web Apps", + "resource": "Deployment Locations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/capacities/read", + "display": { + "description": "Get Hosting Environments Capacities.", + "operation": "Get Hosting Environments Capacities", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Capacities" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/diagnostics/read", + "display": { + "description": "Get Hosting Environments Diagnostics.", + "operation": "Get Hosting Environments Diagnostics", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Diagnostics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/metricdefinitions/read", + "display": { + "description": "Get Hosting Environments Metric Definitions.", + "operation": "Get Hosting Environments Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/metricdefinitions/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools Metric Definitions.", + "operation": "Get Hosting Environments MultiRole Pools Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/metrics/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools Metrics.", + "operation": "Get Hosting Environments MultiRole Pools Metrics", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/skus/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools SKUs.", + "operation": "Get Hosting Environments MultiRole Pools SKUs", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/usages/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools Usages.", + "operation": "Get Hosting Environments MultiRole Pools Usages", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/operations/read", + "display": { + "description": "Get Hosting Environments Operations.", + "operation": "Get Hosting Environments Operations", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/resume/action", + "display": { + "description": "Resume Hosting Environments.", + "operation": "Resume Hosting Environments", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/serverfarms/read", + "display": { + "description": "Get Hosting Environments App Service Plans.", + "operation": "Get Hosting Environments App Service Plans", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments App Service Plans" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/sites/read", + "display": { + "description": "Get Hosting Environments Web Apps.", + "operation": "Get Hosting Environments Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/suspend/action", + "display": { + "description": "Suspend Hosting Environments.", + "operation": "Suspend Hosting Environments", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/usages/read", + "display": { + "description": "Get Hosting Environments Usages.", + "operation": "Get Hosting Environments Usages", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/metricdefinitions/read", + "display": { + "description": "Get Hosting Environments Workerpools Metric Definitions.", + "operation": "Get Hosting Environments Workerpools Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/metrics/read", + "display": { + "description": "Get Hosting Environments Workerpools Metrics.", + "operation": "Get Hosting Environments Workerpools Metrics", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/skus/read", + "display": { + "description": "Get Hosting Environments Workerpools SKUs.", + "operation": "Get Hosting Environments Workerpools SKUs", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/usages/read", + "display": { + "description": "Get Hosting Environments Workerpools Usages.", + "operation": "Get Hosting Environments Workerpools Usages", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/ishostingenvironmentnameavailable/read", + "display": { + "description": "Get if Hosting Environment Name is available.", + "operation": "Check if Hosting Environment Name is available", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environment Name" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/ishostnameavailable/read", + "display": { + "description": "Check if Hostname is Available.", + "operation": "Check if Hostname is Available", + "provider": "Microsoft Web Apps", + "resource": "Hostname" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/isusernameavailable/read", + "display": { + "description": "Check if Username is available.", + "operation": "Check if Username is available", + "provider": "Microsoft Web Apps", + "resource": "Username" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/apioperations/read", + "display": { + "description": "Get Locations API Operations.", + "operation": "Get Locations API Operations", + "provider": "Microsoft Web Apps", + "resource": "Locations API Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/connectiongatewayinstallations/read", + "display": { + "description": "Get Locations Connection Gateway Installations.", + "operation": "Get Locations Connection Gateway Installations", + "provider": "Microsoft Web Apps", + "resource": "Locations Connection Gateway Installations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/functionappstacks/read", + "display": { + "description": "Get Locations Function App Stacks.", + "operation": "Get Locations Function App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Locations Function App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/webappstacks/read", + "display": { + "description": "Get Locations Web App Stacks.", + "operation": "Get Locations Web App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Locations Web App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/managedapis/read", + "display": { + "description": "Get Locations Managed APIs.", + "operation": "Get Locations Managed APIs", + "provider": "Microsoft Web Apps", + "resource": "Locations Managed APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/operations/read", + "display": { + "description": "Get Operations.", + "operation": "Get Operations", + "provider": "Microsoft Web Apps", + "resource": "Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/publishingusers/read", + "display": { + "description": "Get Publishing Users.", + "operation": "Get Publishing Users", + "provider": "Microsoft Web Apps", + "resource": "Publishing Users" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/publishingusers/write", + "display": { + "description": "Update Publishing Users.", + "operation": "Update Publishing Users", + "provider": "Microsoft Web Apps", + "resource": "Publishing Users" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/capabilities/read", + "display": { + "description": "Get App Service Plans Capabilities.", + "operation": "Get App Service Plans Capabilities", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Capabilities" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/firstpartyapps/settings/delete", + "display": { + "description": "Delete App Service Plans First Party Apps Settings.", + "operation": "Delete App Service Plans First Party Apps Settings", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans First Party Apps Settings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/firstpartyapps/settings/read", + "display": { + "description": "Get App Service Plans First Party Apps Settings.", + "operation": "Get App Service Plans First Party Apps Settings", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans First Party Apps Settings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/firstpartyapps/settings/write", + "display": { + "description": "Update App Service Plans First Party Apps Settings.", + "operation": "Update App Service Plans First Party Apps Settings", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans First Party Apps Settings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/sites/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps.", + "operation": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Namespaces Relays Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionplanlimits/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Plan Limits.", + "operation": "Get App Service Plans Hybrid Connection Plan Limits", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Plan Limits" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionrelays/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Relays.", + "operation": "Get App Service Plans Hybrid Connection Relays", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/metricdefinitions/read", + "display": { + "description": "Get App Service Plans Metric Definitions.", + "operation": "Get App Service Plans Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/metrics/read", + "display": { + "description": "Get App Service Plans Metrics.", + "operation": "Get App Service Plans Metrics", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/operationresults/read", + "display": { + "description": "Get App Service Plans Operation Results.", + "operation": "Get App Service Plans Operation Results", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Operation Results" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/sites/read", + "display": { + "description": "Get App Service Plans Web Apps.", + "operation": "Get App Service Plans Web Apps", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/skus/read", + "display": { + "description": "Get App Service Plans SKUs.", + "operation": "Get App Service Plans SKUs", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/usages/read", + "display": { + "description": "Get App Service Plans Usages.", + "operation": "Get App Service Plans Usages", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/gateways/write", + "display": { + "description": "Update App Service Plans Virtual Network Connections Gateways.", + "operation": "Update App Service Plans Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/read", + "display": { + "description": "Get App Service Plans Virtual Network Connections.", + "operation": "Get App Service Plans Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/delete", + "display": { + "description": "Delete App Service Plans Virtual Network Connections Routes.", + "operation": "Delete App Service Plans Virtual Network Connections Routes", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Routes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/read", + "display": { + "description": "Get App Service Plans Virtual Network Connections Routes.", + "operation": "Get App Service Plans Virtual Network Connections Routes", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Routes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/write", + "display": { + "description": "Update App Service Plans Virtual Network Connections Routes.", + "operation": "Update App Service Plans Virtual Network Connections Routes", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Routes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/workers/reboot/action", + "display": { + "description": "Reboot App Service Plans Workers.", + "operation": "Reboot App Service Plans Workers", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Workers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/analyzecustomhostname/read", + "display": { + "description": "Analyze Custom Hostname.", + "operation": "Analyze Custom Hostname", + "provider": "Microsoft Web Apps", + "resource": "Custom Hostname" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backup/read", + "display": { + "description": "Get Web Apps Backup.", + "operation": "Get Web Apps Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backup/write", + "display": { + "description": "Update Web Apps Backup.", + "operation": "Update Web Apps Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backups/list/action", + "display": { + "description": "List Web Apps Backups.", + "operation": "List Web Apps Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backups/restore/action", + "display": { + "description": "Restore Web Apps Backups.", + "operation": "Restore Web Apps Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/config/delete", + "display": { + "description": "Delete Web Apps Config.", + "operation": "Delete Web Apps Config", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Config" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/delete", + "display": { + "description": "Delete Web Apps Continuous Web Jobs.", + "operation": "Delete Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/read", + "display": { + "description": "Get Web Apps Continuous Web Jobs.", + "operation": "Get Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/start/action", + "display": { + "description": "Start Web Apps Continuous Web Jobs.", + "operation": "Start Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/stop/action", + "display": { + "description": "Stop Web Apps Continuous Web Jobs.", + "operation": "Stop Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/delete", + "display": { + "description": "Delete Web Apps Deployments.", + "operation": "Delete Web Apps Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/log/read", + "display": { + "description": "Get Web Apps Deployments Log.", + "operation": "Get Web Apps Deployments Log", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments Log" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/read", + "display": { + "description": "Get Web Apps Deployments.", + "operation": "Get Web Apps Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/write", + "display": { + "description": "Update Web Apps Deployments.", + "operation": "Update Web Apps Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/frebanalysis/read", + "display": { + "description": "Get Web Apps Diagnostics FREB Analysis.", + "operation": "Get Web Apps Diagnostics FREB Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics FREB Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/frebanalysis/read", + "display": { + "description": "Get Web Apps Slots Diagnostics FREB Analysis.", + "operation": "Get Web Apps Slots Diagnostics FREB Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics FREB Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/read", + "display": { + "description": "Get Web Apps Diagnostics Categories.", + "operation": "Get Web Apps Diagnostics Category", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Category" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/runtimeavailability/read", + "display": { + "description": "Get Web Apps Diagnostics Runtime Availability.", + "operation": "Get Web Apps Diagnostics Runtime Availability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Runtime Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/servicehealth/read", + "display": { + "description": "Get Web Apps Diagnostics Service Health.", + "operation": "Get Web Apps Diagnostics Service Health", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Service Health" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/workeravailability/read", + "display": { + "description": "Get Web Apps Diagnostics Workeravailability.", + "operation": "Get Web Apps Diagnostics Workeravailability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Workeravailability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/workeravailability/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Workeravailability.", + "operation": "Get Web Apps Slots Diagnostics Workeravailability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Workeravailability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/workerprocessrecycle/read", + "display": { + "description": "Get Web Apps Diagnostics Worker Process Recycle.", + "operation": "Get Web Apps Diagnostics Worker Process Recycle", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Worker Process Recycle" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/workerprocessrecycle/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Worker Process Recycle.", + "operation": "Get Web Apps Slots Diagnostics Worker Process Recycle", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Worker Process Recycle" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/aspnetcore/read", + "display": { + "description": "Get Web Apps Diagnostics for ASP.NET Core app.", + "operation": "Get Web Apps Diagnostics ASP.NET Core", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics ASP.NET Core" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/aspnetcore/read", + "display": { + "description": "Get Web Apps Slots Diagnostics for ASP.NET Core app.", + "operation": "Get Web Apps Slots Diagnostics ASP.NET Core", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics ASP.NET Core" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/domainownershipidentifiers/read", + "display": { + "description": "Get Web Apps Domain Ownership Identifiers.", + "operation": "Get Web Apps Domain Ownership Identifiers", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Domain Ownership Identifiers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/domainownershipidentifiers/write", + "display": { + "description": "Update Web Apps Domain Ownership Identifiers.", + "operation": "Update Web Apps Domain Ownership Identifiers", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Domain Ownership Identifiers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/action", + "display": { + "description": "Functions Web Apps.", + "operation": "Functions Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/delete", + "display": { + "description": "Delete Web Apps Functions.", + "operation": "Delete Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/listsecrets/action", + "display": { + "description": "List Secrets Web Apps Functions.", + "operation": "List Secrets Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/read", + "display": { + "description": "Get Web Apps Functions.", + "operation": "Get Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/write", + "display": { + "description": "Update Web Apps Functions.", + "operation": "Update Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hostnamebindings/delete", + "display": { + "description": "Delete Web Apps Hostname Bindings.", + "operation": "Delete Web Apps Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hostnamebindings/read", + "display": { + "description": "Get Web Apps Hostname Bindings.", + "operation": "Get Web Apps Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hostnamebindings/write", + "display": { + "description": "Update Web Apps Hostname Bindings.", + "operation": "Update Web Apps Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnection/delete", + "display": { + "description": "Delete Web Apps Hybrid Connection.", + "operation": "Delete Web Apps Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnection/read", + "display": { + "description": "Get Web Apps Hybrid Connection.", + "operation": "Get Web Apps Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnection/write", + "display": { + "description": "Update Web Apps Hybrid Connection.", + "operation": "Update Web Apps Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionrelays/read", + "display": { + "description": "Get Web Apps Hybrid Connection Relays.", + "operation": "Get Web Apps Hybrid Connection Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/deployments/read", + "display": { + "description": "Get Web Apps Instances Deployments.", + "operation": "Get Web Apps Instances Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/processes/delete", + "display": { + "description": "Delete Web Apps Instances Processes.", + "operation": "Delete Web Apps Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/processes/read", + "display": { + "description": "Get Web Apps Instances Processes.", + "operation": "Get Web Apps Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/read", + "display": { + "description": "Get Web Apps Instances.", + "operation": "Get Web Apps Instances", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/listsyncfunctiontriggerstatus/action", + "display": { + "description": "List Sync Function Trigger Status Web Apps.", + "operation": "List Sync Function Trigger Status Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/metricdefinitions/read", + "display": { + "description": "Get Web Apps Metric Definitions.", + "operation": "Get Web Apps Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/metrics/read", + "display": { + "description": "Get Web Apps Metrics.", + "operation": "Get Web Apps Metrics", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/networktrace/action", + "display": { + "description": "Network Trace Web Apps.", + "operation": "Network Trace Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/newpassword/action", + "display": { + "description": "Newpassword Web Apps.", + "operation": "Newpassword Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/operationresults/read", + "display": { + "description": "Get Web Apps Operation Results.", + "operation": "Get Web Apps Operation Results", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Operation Results" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/perfcounters/read", + "display": { + "description": "Get Web Apps Performance Counters.", + "operation": "Get Web Apps Performance Counters", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Performance Counters" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/premieraddons/delete", + "display": { + "description": "Delete Web Apps Premier Addons.", + "operation": "Delete Web Apps Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/premieraddons/read", + "display": { + "description": "Get Web Apps Premier Addons.", + "operation": "Get Web Apps Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/premieraddons/write", + "display": { + "description": "Update Web Apps Premier Addons.", + "operation": "Update Web Apps Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publishxml/read", + "display": { + "description": "Get Web Apps Publishing XML.", + "operation": "Get Web Apps Publishing XML", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Publishing XML" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/recommendationhistory/read", + "display": { + "description": "Get Web Apps Recommendation History.", + "operation": "Get Web Apps Recommendation History", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Recommendation History" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/recommendations/disable/action", + "display": { + "description": "Disable Web Apps Recommendations.", + "operation": "Disable Web Apps Recommendations", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Recommendations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/restore/read", + "display": { + "description": "Get Web Apps Restore.", + "operation": "Get Web Apps Restore", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Restore" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/analyzecustomhostname/read", + "display": { + "description": "Get Web Apps Slots Analyze Custom Hostname.", + "operation": "Get Web Apps Slots Analyze Custom Hostname", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Analyze Custom Hostname" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backup/write", + "display": { + "description": "Update Web Apps Slots Backup.", + "operation": "Update Web Apps Slots Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backups/list/action", + "display": { + "description": "List Web Apps Slots Backups.", + "operation": "List Web Apps Slots Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backups/restore/action", + "display": { + "description": "Restore Web Apps Slots Backups.", + "operation": "Restore Web Apps Slots Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/config/delete", + "display": { + "description": "Delete Web Apps Slots Config.", + "operation": "Delete Web Apps Slots Config", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Config" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/delete", + "display": { + "description": "Delete Web Apps Slots Continuous Web Jobs.", + "operation": "Delete Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/read", + "display": { + "description": "Get Web Apps Slots Continuous Web Jobs.", + "operation": "Get Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/start/action", + "display": { + "description": "Start Web Apps Slots Continuous Web Jobs.", + "operation": "Start Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/stop/action", + "display": { + "description": "Stop Web Apps Slots Continuous Web Jobs.", + "operation": "Stop Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/delete", + "display": { + "description": "Delete Web Apps Slots Deployments.", + "operation": "Delete Web Apps Slots Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/log/read", + "display": { + "description": "Get Web Apps Slots Deployments Log.", + "operation": "Get Web Apps Slots Deployments Log", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments Log" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/read", + "display": { + "description": "Get Web Apps Slots Deployments.", + "operation": "Get Web Apps Slots Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/write", + "display": { + "description": "Update Web Apps Slots Deployments.", + "operation": "Update Web Apps Slots Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hostnamebindings/delete", + "display": { + "description": "Delete Web Apps Slots Hostname Bindings.", + "operation": "Delete Web Apps Slots Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hostnamebindings/read", + "display": { + "description": "Get Web Apps Slots Hostname Bindings.", + "operation": "Get Web Apps Slots Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hostnamebindings/write", + "display": { + "description": "Update Web Apps Slots Hostname Bindings.", + "operation": "Update Web Apps Slots Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnection/delete", + "display": { + "description": "Delete Web Apps Slots Hybrid Connection.", + "operation": "Delete Web Apps Slots Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnection/read", + "display": { + "description": "Get Web Apps Slots Hybrid Connection.", + "operation": "Get Web Apps Slots Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnection/write", + "display": { + "description": "Update Web Apps Slots Hybrid Connection.", + "operation": "Update Web Apps Slots Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/instances/deployments/read", + "display": { + "description": "Get Web Apps Slots Instances Deployments.", + "operation": "Get Web Apps Slots Instances Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/instances/processes/read", + "display": { + "description": "Get Web Apps Slots Instances Processes.", + "operation": "Get Web Apps Slots Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/instances/read", + "display": { + "description": "Get Web Apps Slots Instances.", + "operation": "Get Web Apps Slots Instances", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/metricdefinitions/read", + "display": { + "description": "Get Web Apps Slots Metric Definitions.", + "operation": "Get Web Apps Slots Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/metrics/read", + "display": { + "description": "Get Web Apps Slots Metrics.", + "operation": "Get Web Apps Slots Metrics", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/newpassword/action", + "display": { + "description": "Newpassword Web Apps Slots.", + "operation": "Newpassword Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/operationresults/read", + "display": { + "description": "Get Web Apps Slots Operation Results.", + "operation": "Get Web Apps Slots Operation Results", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Operation Results" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/phplogging/read", + "display": { + "description": "Get Web Apps Slots Phplogging.", + "operation": "Get Web Apps Slots Phplogging", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Phplogging" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/premieraddons/delete", + "display": { + "description": "Delete Web Apps Slots Premier Addons.", + "operation": "Delete Web Apps Slots Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/premieraddons/read", + "display": { + "description": "Get Web Apps Slots Premier Addons.", + "operation": "Get Web Apps Slots Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/premieraddons/write", + "display": { + "description": "Update Web Apps Slots Premier Addons.", + "operation": "Update Web Apps Slots Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/restore/read", + "display": { + "description": "Get Web Apps Slots Restore.", + "operation": "Get Web Apps Slots Restore", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Restore" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/sync/action", + "display": { + "description": "Sync Web Apps Slots.", + "operation": "Sync Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/triggeredwebjobs/delete", + "display": { + "description": "Delete Web Apps Slots Triggered WebJobs.", + "operation": "Delete Web Apps Slots Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/triggeredwebjobs/read", + "display": { + "description": "Get Web Apps Slots Triggered WebJobs.", + "operation": "Get Web Apps Slots Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/triggeredwebjobs/run/action", + "display": { + "description": "Run Web Apps Slots Triggered WebJobs.", + "operation": "Run Web Apps Slots Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/usages/read", + "display": { + "description": "Get Web Apps Slots Usages.", + "operation": "Get Web Apps Slots Usages", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/delete", + "display": { + "description": "Delete Web Apps Slots Virtual Network Connections.", + "operation": "Delete Web Apps Slots Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/gateways/write", + "display": { + "description": "Update Web Apps Slots Virtual Network Connections Gateways.", + "operation": "Update Web Apps Slots Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/read", + "display": { + "description": "Get Web Apps Slots Virtual Network Connections.", + "operation": "Get Web Apps Slots Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/write", + "display": { + "description": "Update Web Apps Slots Virtual Network Connections.", + "operation": "Update Web Apps Slots Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/webjobs/read", + "display": { + "description": "Get Web Apps Slots WebJobs.", + "operation": "Get Web Apps Slots WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/snapshots/read", + "display": { + "description": "Get Web Apps Snapshots.", + "operation": "Get Web Apps Snapshots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Snapshots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/sync/action", + "display": { + "description": "Sync Web Apps.", + "operation": "Sync Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/delete", + "display": { + "description": "Delete Web Apps Triggered WebJobs.", + "operation": "Delete Web Apps Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/read", + "display": { + "description": "Get Web Apps Triggered WebJobs.", + "operation": "Get Web Apps Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/run/action", + "display": { + "description": "Run Web Apps Triggered WebJobs.", + "operation": "Run Web Apps Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/usages/read", + "display": { + "description": "Get Web Apps Usages.", + "operation": "Get Web Apps Usages", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/delete", + "display": { + "description": "Delete Web Apps Virtual Network Connections.", + "operation": "Delete Web Apps Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/gateways/read", + "display": { + "description": "Get Web Apps Virtual Network Connections Gateways.", + "operation": "Get Web Apps Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/gateways/write", + "display": { + "description": "Update Web Apps Virtual Network Connections Gateways.", + "operation": "Update Web Apps Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/read", + "display": { + "description": "Get Web Apps Virtual Network Connections.", + "operation": "Get Web Apps Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/write", + "display": { + "description": "Update Web Apps Virtual Network Connections.", + "operation": "Update Web Apps Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/webjobs/read", + "display": { + "description": "Get Web Apps WebJobs.", + "operation": "Get Web Apps WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/skus/read", + "display": { + "description": "Get SKUs.", + "operation": "Get SKUs", + "provider": "Microsoft Web Apps", + "resource": "SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sourcecontrols/read", + "display": { + "description": "Get Source Controls.", + "operation": "Get Source Controls", + "provider": "Microsoft Web Apps", + "resource": "Source Controls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sourcecontrols/write", + "display": { + "description": "Update Source Controls.", + "operation": "Update Source Controls", + "provider": "Microsoft Web Apps", + "resource": "Source Controls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/unregister/action", + "display": { + "description": "Unregister Microsoft.Web resource provider for the subscription.", + "operation": "Unregister Microsoft.Web resource provider", + "provider": "Microsoft Web Apps", + "resource": "Microsoft.Web resource provider" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/validate/action", + "display": { + "description": "Validate .", + "operation": "Validate ", + "provider": "Microsoft Web Apps", + "resource": "" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/register/action", + "display": { + "description": "Register Microsoft.Web resource provider for the subscription.", + "operation": "Register Microsoft.Web resource provider", + "provider": "Microsoft Web Apps", + "resource": "Microsoft.Web resource provider" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Namespaces Relays.", + "operation": "Get App Service Plans Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backups/delete", + "display": { + "description": "Delete Web Apps Backups.", + "operation": "Delete Web Apps Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/delete", + "display": { + "description": "Delete Web Apps Hybrid Connection Namespaces Relays.", + "operation": "Delete Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/listkeys/action", + "display": { + "description": "List Keys Web Apps Hybrid Connection Namespaces Relays.", + "operation": "List Keys Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/write", + "display": { + "description": "Update Web Apps Hybrid Connection Namespaces Relays.", + "operation": "Update Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/metricsdefinitions/read", + "display": { + "description": "Get Web Apps Metrics Definitions.", + "operation": "Get Web Apps Metrics Definitions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Metrics Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/migratemysql/action", + "display": { + "description": "Migrate MySql Web Apps.", + "operation": "Migrate MySql Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/migratemysql/read", + "display": { + "description": "Get Web Apps Migrate MySql.", + "operation": "Get Web Apps Migrate MySql", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Migrate MySql" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/recover/action", + "display": { + "description": "Recover Web Apps.", + "operation": "Recover Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/siteextensions/delete", + "display": { + "description": "Delete Web Apps Site Extensions.", + "operation": "Delete Web Apps Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/siteextensions/read", + "display": { + "description": "Get Web Apps Site Extensions.", + "operation": "Get Web Apps Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/siteextensions/write", + "display": { + "description": "Update Web Apps Site Extensions.", + "operation": "Update Web Apps Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backup/read", + "display": { + "description": "Get Web Apps Slots Backup.", + "operation": "Get Web Apps Slots Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnectionrelays/read", + "display": { + "description": "Get Web Apps Slots Hybrid Connection Relays.", + "operation": "Get Web Apps Slots Hybrid Connection Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/siteextensions/delete", + "display": { + "description": "Delete Web Apps Slots Site Extensions.", + "operation": "Delete Web Apps Slots Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/siteextensions/read", + "display": { + "description": "Get Web Apps Slots Site Extensions.", + "operation": "Get Web Apps Slots Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/siteextensions/write", + "display": { + "description": "Update Web Apps Slots Site Extensions.", + "operation": "Update Web Apps Slots Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/snapshots/read", + "display": { + "description": "Get Web Apps Slots Snapshots.", + "operation": "Get Web Apps Slots Snapshots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Snapshots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/syncfunctiontriggers/action", + "display": { + "description": "Sync Function Triggers for Web Apps.", + "operation": "Sync Function Triggers for Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/history/read", + "display": { + "description": "Get Web Apps Triggered WebJobs History.", + "operation": "Get Web Apps Triggered WebJobs History", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs History" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/connectiongateways/liststatus/action", + "display": { + "description": "List Status Connection Gateways.", + "operation": "List Status Connection Gateways", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/delete", + "display": { + "description": "Delete App Service Plans Hybrid Connection Namespaces Relays.", + "operation": "Delete App Service Plans Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/deployment/read", + "display": { + "description": "Get Web Apps Diagnostics Deployment.", + "operation": "Get Web Apps Diagnostics Deployment", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Deployment" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitecpuanalysis/read", + "display": { + "description": "Get Web Apps Diagnostics Site CPU Analysis.", + "operation": "Get Web Apps Diagnostics Site CPU Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site CPU Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitelatency/read", + "display": { + "description": "Get Web Apps Diagnostics Site Latency.", + "operation": "Get Web Apps Diagnostics Site Latency", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Latency" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitememoryanalysis/read", + "display": { + "description": "Get Web Apps Diagnostics Site Memory Analysis.", + "operation": "Get Web Apps Diagnostics Site Memory Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Memory Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/threadcount/read", + "display": { + "description": "Get Web Apps Diagnostics Thread Count.", + "operation": "Get Web Apps Diagnostics Thread Count", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Thread Count" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/deployment/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Deployment.", + "operation": "Get Web Apps Slots Diagnostics Deployment", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Deployment" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitecpuanalysis/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site CPU Analysis.", + "operation": "Get Web Apps Slots Diagnostics Site CPU Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site CPU Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Latency.", + "operation": "Get Web Apps Slots Diagnostics Site Latency", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Latency" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitememoryanalysis/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Memory Analysis.", + "operation": "Get Web Apps Slots Diagnostics Site Memory Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Memory Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/threadcount/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Thread Count.", + "operation": "Get Web Apps Slots Diagnostics Thread Count", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Thread Count" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/masterkey/read", + "display": { + "description": "Get Web Apps Functions Masterkey.", + "operation": "Get Web Apps Functions Masterkey", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions Masterkey" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/read", + "display": { + "description": "Get Web Apps Hybrid Connection Namespaces Relays.", + "operation": "Get Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/extensions/read", + "display": { + "description": "Get Web Apps Instances Extensions.", + "operation": "Get Web Apps Instances Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/operations/read", + "display": { + "description": "Get Web Apps Operations.", + "operation": "Get Web Apps Operations", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/resourcehealthmetadata/read", + "display": { + "description": "Get Web Apps Resource Health Metadata.", + "operation": "Get Web Apps Resource Health Metadata", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Resource Health Metadata" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backups/delete", + "display": { + "description": "Delete Web Apps Slots Backups.", + "operation": "Delete Web Apps Slots Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/domainownershipidentifiers/read", + "display": { + "description": "Get Web Apps Slots Domain Ownership Identifiers.", + "operation": "Get Web Apps Slots Domain Ownership Identifiers", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Domain Ownership Identifiers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/delete", + "display": { + "description": "Delete Web Apps Slots Hybrid Connection Namespaces Relays.", + "operation": "Delete Web Apps Slots Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/write", + "display": { + "description": "Update Web Apps Slots Hybrid Connection Namespaces Relays.", + "operation": "Update Web Apps Slots Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/operations/read", + "display": { + "description": "Get Web Apps Slots Operations.", + "operation": "Get Web Apps Slots Operations", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/perfcounters/read", + "display": { + "description": "Get Web Apps Slots Performance Counters.", + "operation": "Get Web Apps Slots Performance Counters", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Performance Counters" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/resourcehealthmetadata/read", + "display": { + "description": "Get Web Apps Slots Resource Health Metadata.", + "operation": "Get Web Apps Slots Resource Health Metadata", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Resource Health Metadata" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apiacls/read", + "display": { + "description": "Get Api Management Accounts Apiacls.", + "operation": "Get Api Management Accounts Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/read", + "display": { + "description": "Get Api Management Accounts APIs Connections.", + "operation": "Get Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/read", + "display": { + "description": "Get Api Management Accounts APIs.", + "operation": "Get Api Management Accounts APIs", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/connectionacls/read", + "display": { + "description": "Get Api Management Accounts Connectionacls.", + "operation": "Get Api Management Accounts Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/apiacls/delete", + "display": { + "description": "Delete Api Management Accounts APIs Apiacls.", + "operation": "Delete Api Management Accounts APIs Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/apiacls/read", + "display": { + "description": "Get Api Management Accounts APIs Apiacls.", + "operation": "Get Api Management Accounts APIs Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/apiacls/write", + "display": { + "description": "Update Api Management Accounts APIs Apiacls.", + "operation": "Update Api Management Accounts APIs Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connectionacls/read", + "display": { + "description": "Get Api Management Accounts APIs Connectionacls.", + "operation": "Get Api Management Accounts APIs Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/confirmconsentcode/action", + "display": { + "description": "Confirm Consent Code Api Management Accounts APIs Connections.", + "operation": "Confirm Consent Code Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/delete", + "display": { + "description": "Delete Api Management Accounts APIs Connections Connectionacls.", + "operation": "Delete Api Management Accounts APIs Connections Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/read", + "display": { + "description": "Get Api Management Accounts APIs Connections Connectionacls.", + "operation": "Get Api Management Accounts APIs Connections Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/write", + "display": { + "description": "Update Api Management Accounts APIs Connections Connectionacls.", + "operation": "Update Api Management Accounts APIs Connections Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/delete", + "display": { + "description": "Delete Api Management Accounts APIs Connections.", + "operation": "Delete Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/getconsentlinks/action", + "display": { + "description": "Get Consent Links for Api Management Accounts APIs Connections.", + "operation": "Get Consent Links for Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/write", + "display": { + "description": "Update Api Management Accounts APIs Connections.", + "operation": "Update Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/delete", + "display": { + "description": "Delete Api Management Accounts APIs.", + "operation": "Delete Api Management Accounts APIs", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/delete", + "display": { + "description": "Delete Api Management Accounts APIs Localized Definitions.", + "operation": "Delete Api Management Accounts APIs Localized Definitions", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Localized Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/read", + "display": { + "description": "Get Api Management Accounts APIs Localized Definitions.", + "operation": "Get Api Management Accounts APIs Localized Definitions", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Localized Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/write", + "display": { + "description": "Update Api Management Accounts APIs Localized Definitions.", + "operation": "Update Api Management Accounts APIs Localized Definitions", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Localized Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/write", + "display": { + "description": "Update Api Management Accounts APIs.", + "operation": "Update Api Management Accounts APIs", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/listconnectionkeys/action", + "display": { + "description": "List Connection Keys Api Management Accounts APIs Connections.", + "operation": "List Connection Keys Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/listsecrets/action", + "display": { + "description": "List Secrets Api Management Accounts APIs Connections.", + "operation": "List Secrets Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/deployments/read", + "display": { + "description": "Get Web Apps Diagnostics Deployments.", + "operation": "Get Web Apps Diagnostics Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/deployments/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Deployments.", + "operation": "Get Web Apps Slots Diagnostics Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/loganalyzer/read", + "display": { + "description": "Get Web Apps Diagnostics Log Analyzer.", + "operation": "Get Web Apps Diagnostics Log Analyzer", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Log Analyzer" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/loganalyzer/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Log Analyzer.", + "operation": "Get Web Apps Slots Diagnostics Log Analyzer", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Log Analyzer" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitecrashes/read", + "display": { + "description": "Get Web Apps Diagnostics Site Crashes.", + "operation": "Get Web Apps Diagnostics Site Crashes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Crashes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitecrashes/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Crashes.", + "operation": "Get Web Apps Slots Diagnostics Site Crashes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Crashes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/siterestartsettingupdate/read", + "display": { + "description": "Get Web Apps Diagnostics Site Restart Setting Update.", + "operation": "Get Web Apps Diagnostics Site Restart Setting Update", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Restart Setting Update" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/siterestartsettingupdate/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Restart Setting Update.", + "operation": "Get Web Apps Slots Diagnostics Site Restart Setting Update", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Restart Setting Update" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/siterestartuserinitiated/read", + "display": { + "description": "Get Web Apps Diagnostics Site Restart User Initiated.", + "operation": "Get Web Apps Diagnostics Site Restart User Initiated", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Restart User Initiated" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/siterestartuserinitiated/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Restart User Initiated.", + "operation": "Get Web Apps Slots Diagnostics Site Restart User Initiated", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Restart User Initiated" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/siteswap/read", + "display": { + "description": "Get Web Apps Diagnostics Site Swap.", + "operation": "Get Web Apps Diagnostics Site Swap", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Swap" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/siteswap/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Swap.", + "operation": "Get Web Apps Slots Diagnostics Site Swap", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Swap" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/token/read", + "display": { + "description": "Get Web Apps Functions Token.", + "operation": "Get Web Apps Functions Token", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions Token" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/deployments/delete", + "display": { + "description": "Delete Web Apps Instances Deployments.", + "operation": "Delete Web Apps Instances Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/processes/read", + "display": { + "description": "Get Web Apps Processes.", + "operation": "Get Web Apps Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publiccertificates/delete", + "display": { + "description": "Delete Web Apps Public Certificates.", + "operation": "Delete Web Apps Public Certificates", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Public Certificates" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publiccertificates/read", + "display": { + "description": "Get Web Apps Public Certificates.", + "operation": "Get Web Apps Public Certificates", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Public Certificates" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publiccertificates/write", + "display": { + "description": "Update Web Apps Public Certificates.", + "operation": "Update Web Apps Public Certificates", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Public Certificates" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/networktrace/action", + "display": { + "description": "Network Trace Web Apps Slots.", + "operation": "Network Trace Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/autoheal/read", + "display": { + "description": "Get Web Apps Diagnostics Autoheal.", + "operation": "Get Web Apps Diagnostics Autoheal", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Autoheal" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/autoheal/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Autoheal.", + "operation": "Get Web Apps Slots Diagnostics Autoheal", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Autoheal" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/read", + "display": { + "description": "Get Web Apps Slots Diagnostics.", + "operation": "Get Web Apps Slots Diagnostics", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/runtimeavailability/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Runtime Availability.", + "operation": "Get Web Apps Slots Diagnostics Runtime Availability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Runtime Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/servicehealth/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Service Health.", + "operation": "Get Web Apps Slots Diagnostics Service Health", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Service Health" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Latency.", + "operation": "Get Web Apps Slots Diagnostics Site Latency", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Latency" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/migratemysql/read", + "display": { + "description": "Get Web Apps Slots Migrate MySql.", + "operation": "Get Web Apps Slots Migrate MySql", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Migrate MySql" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App slot" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App slot" + }, + "origin": "system" + }, + { + "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service plan" + }, + "origin": "system" + }, + { + "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service plan" + }, + "origin": "system" + }, + { + "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service Environment" + }, + "origin": "system" + }, + { + "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service Environment" + }, + "origin": "system" + }, + { + "name": "microsoft.web/billingmeters/read", + "display": { + "description": "Get list of billing meters.", + "operation": "Read billing meters", + "provider": "Microsoft Web Apps", + "resource": "Billing meters for Microsoft Web Apps" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/slots/instances/processes/delete", + "display": { + "description": "Delete Web Apps Slots Instances Processes.", + "operation": "Delete Web Apps Slots Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/restore/write", + "display": { + "description": "Restore Web Apps.", + "operation": "Restore Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/extensions/log/read", + "display": { + "description": "Get Web Apps Instances Extensions Log.", + "operation": "Get Web Apps Instances Extensions Log", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Extensions Log" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/customapis/write", + "display": { + "description": "Update Custom APIs.", + "operation": "Update Custom APIs", + "provider": "Microsoft Web Apps", + "resource": "Custom APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/customapis/read", + "display": { + "description": "Get Custom APIs.", + "operation": "Get Custom APIs", + "provider": "Microsoft Web Apps", + "resource": "Custom APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/failedrequestsperuri/read", + "display": { + "description": "Get Web Apps Diagnostics Failed Requests Per Uri.", + "operation": "Get Web Apps Diagnostics Failed Requests Per Uri", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Failed Requests Per Uri" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/restore/write", + "display": { + "description": "Restore Web Apps Slots.", + "operation": "Restore Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/detectors/read", + "display": { + "description": "Get Web Apps Diagnostics Detector.", + "operation": "Get Web Apps Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/analyses/read", + "display": { + "description": "Get Web Apps Diagnostics Analysis.", + "operation": "Get Web Apps Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/analyses/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Analysis.", + "operation": "Get Web Apps Slots Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/detectors/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Detector.", + "operation": "Get Web Apps Slots Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/analyses/execute/Action", + "display": { + "description": "Run Web Apps Diagnostics Analysis.", + "operation": "Run Web Apps Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/detectors/execute/Action", + "display": { + "description": "Run Web Apps Diagnostics Detector.", + "operation": "Run Web Apps Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/analyses/execute/Action", + "display": { + "description": "Run Web Apps Slots Diagnostics Analysis.", + "operation": "Run Web Apps Slots Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/detectors/execute/Action", + "display": { + "description": "Run Web Apps Slots Diagnostics Detector.", + "operation": "Run Web Apps Slots Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for App Service Plan", + "operation": "Read App Service Plan metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of App Service Plan" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "CpuPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Percentage", + "displayName": "CPU Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "MemoryPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory Percentage", + "displayName": "Memory Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "DiskQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Disk Queue Length", + "displayName": "Disk Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "HttpQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Queue Length", + "displayName": "Http Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + } + ] + } + } + }, + { + "name": "Microsoft.Web/sites/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for Web App", + "operation": "Read Web App metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of Web App" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "CpuTime", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Time", + "displayName": "CPU Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "Requests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Requests", + "displayName": "Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "Http101", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 101", + "displayName": "Http 101", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http2xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 2xx", + "displayName": "Http 2xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http3xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 3xx", + "displayName": "Http 3xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http401", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 401", + "displayName": "Http 401", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http403", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 403", + "displayName": "Http 403", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http404", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 404", + "displayName": "Http 404", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http406", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 406", + "displayName": "Http 406", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http4xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 4xx", + "displayName": "Http 4xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http5xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Server Errors", + "displayName": "Http Server Errors", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "MemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory working set", + "displayName": "Memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageMemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average memory working set", + "displayName": "Average memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageResponseTime", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average Response Time", + "displayName": "Average Response Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "FunctionExecutionUnits", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Units", + "displayName": "Function Execution Units", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "FunctionExecutionCount", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Count", + "displayName": "Function Execution Count", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + }, + { + "name": "Microsoft.Web/sites/slots/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for Web App Slot", + "operation": "Read Web App Slot metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of Web App Slot" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "CpuTime", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Time", + "displayName": "CPU Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "Requests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Requests", + "displayName": "Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "Http101", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 101", + "displayName": "Http 101", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http2xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 2xx", + "displayName": "Http 2xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http3xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 3xx", + "displayName": "Http 3xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http401", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 401", + "displayName": "Http 401", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http403", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 403", + "displayName": "Http 403", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http404", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 404", + "displayName": "Http 404", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http406", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 406", + "displayName": "Http 406", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http4xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 4xx", + "displayName": "Http 4xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http5xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Server Errors", + "displayName": "Http Server Errors", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "MemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory working set", + "displayName": "Memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageMemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average memory working set", + "displayName": "Average memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageResponseTime", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average Response Time", + "displayName": "Average Response Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "FunctionExecutionUnits", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Units", + "displayName": "Function Execution Units", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "FunctionExecutionCount", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Count", + "displayName": "Function Execution Count", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + }, + { + "name": "Microsoft.Web/hostingEnvironments/multiRolePools/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for App Service Environment MultiRole", + "operation": "Read App Service Environment MultiRole metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of App Service Environment MultiRole" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "Requests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Requests", + "displayName": "Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "Http101", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 101", + "displayName": "Http 101", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http2xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 2xx", + "displayName": "Http 2xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http3xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 3xx", + "displayName": "Http 3xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http401", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 401", + "displayName": "Http 401", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http403", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 403", + "displayName": "Http 403", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http404", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 404", + "displayName": "Http 404", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http406", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 406", + "displayName": "Http 406", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http4xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 4xx", + "displayName": "Http 4xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http5xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Server Errors", + "displayName": "Http Server Errors", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "AverageResponseTime", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average Response Time", + "displayName": "Average Response Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "CpuPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Percentage", + "displayName": "CPU Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "MemoryPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory Percentage", + "displayName": "Memory Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "DiskQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Disk Queue Length", + "displayName": "Disk Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "HttpQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Queue Length", + "displayName": "Http Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "ActiveRequests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Active Requests", + "displayName": "Active Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "TotalFrontEnds", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Total Front Ends", + "displayName": "Total Front Ends", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "SmallAppServicePlanInstances", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Small App Service Plan Workers", + "displayName": "Small App Service Plan Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "MediumAppServicePlanInstances", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Medium App Service Plan Workers", + "displayName": "Medium App Service Plan Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "LargeAppServicePlanInstances", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Large App Service Plan Workers", + "displayName": "Large App Service Plan Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + }, + { + "name": "Microsoft.Web/hostingEnvironments/workerPools/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for App Service Environment WorkerPool", + "operation": "Read App Service Environment WorkerPool metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of App Service Environment WorkerPool" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "WorkersTotal", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Total Workers", + "displayName": "Total Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "WorkersAvailable", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Available Workers", + "displayName": "Available Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "WorkersUsed", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Used Workers", + "displayName": "Used Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_ListOperations", + "title": "List operations" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json new file mode 100644 index 000000000000..66c1d54ef9a4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "testsite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "ftp", + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + { + "name": "scm", + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/basicPublishingCredentialsPolicies/scm", + "properties": { + "allow": true + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBasicPublishingCredentialsPolicies", + "title": "List Publishing Credentials Policies" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json new file mode 100644 index 000000000000..03f728fd60fe --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "name": "testsite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "ftp", + "type": "Microsoft.Web/sites/slots/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/slots/staging/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + { + "name": "scm", + "type": "Microsoft.Web/sites/slots/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/slots/staging/basicPublishingCredentialsPolicies/scm", + "properties": { + "allow": true + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBasicPublishingCredentialsPoliciesSlot", + "title": "List Publishing Credentials Policies" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json new file mode 100644 index 000000000000..8e6e6dbdc45b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "Default-Web-NorthCentralUS", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_ListByResourceGroup", + "title": "List ResourceHealthMetadata for a resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json new file mode 100644 index 000000000000..b7dc070edd5f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-06-01-preview", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_ListBySite", + "title": "List ResourceHealthMetadata for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json new file mode 100644 index 000000000000..30de074d9fed --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-06-01-preview", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_ListBySiteSlot", + "title": "List ResourceHealthMetadata for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json new file mode 100644 index 000000000000..5beb23ad5274 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_List", + "title": "List ResourceHealthMetadata for a subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json new file mode 100644 index 000000000000..dbf2b74a7c1d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "westus", + "provisioningState": "Succeeded" + } + } + ] + } + } + }, + "operationId": "ServerFarmSilos_ListServerFarmSilos", + "title": "List App Service plan silos" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json new file mode 100644 index 000000000000..0b864006c702 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "tests346/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging", + "properties": { + "blobName": "blob1", + "status": "InProgress", + "storageAccountUrl": "https://blobstorage.windows.net" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListSiteBackupsSlot", + "title": "List backups" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json new file mode 100644 index 000000000000..1854faf495a2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json @@ -0,0 +1,53 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_List", + "title": "List Certificates by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json new file mode 100644 index 000000000000..571db4938b81 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json @@ -0,0 +1,54 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_ListSlot", + "title": "List Certificates by resource group for a slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json new file mode 100644 index 000000000000..d696ac2ed2fd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListProductionSiteDeploymentStatuses", + "title": "List Deployment Status" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json new file mode 100644 index 000000000000..eca1f3506efc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListSlotSiteDeploymentStatusesSlot", + "title": "List Deployment Status Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json new file mode 100644 index 000000000000..a4949e8e037d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsite", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", + "name": "eastus-silo", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "eastus", + "primarySiteName": "testsite", + "primaryLocation": "westus", + "provisioningState": "Succeeded" + } + } + ] + } + } + }, + "operationId": "SiteSilos_ListSiteSilos", + "title": "List site silos" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json new file mode 100644 index 000000000000..3dd09c94bd45 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "tests346/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging", + "properties": { + "blobName": "blob1", + "status": "InProgress", + "storageAccountUrl": "https://blobstorage.windows.net" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListSiteBackups", + "title": "List backups" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json new file mode 100644 index 000000000000..b514ba68f432 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/appSettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteAppSettings", + "title": "Get app settings of a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json new file mode 100644 index 000000000000..e1302907cd5b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/basicAuth/default", + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "secretState": "Password", + "secretUrl": null + } + } + ] + } + } + }, + "operationId": "StaticSites_ListBasicAuth", + "title": "Lists the basic auth properties for a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json new file mode 100644 index 000000000000..a50b2220b0e4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteBuildAppSettings", + "title": "Get app settings of a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json new file mode 100644 index 000000000000..ad47acabc5e7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteBuildFunctionAppSettings", + "title": "Get function app settings of a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json new file mode 100644 index 000000000000..820d783eea64 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/functions/GetList", + "properties": { + "functionName": "GetList", + "triggerType": "HttpTrigger" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteBuildFunctions", + "title": "Gets the functions of a particular static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json new file mode 100644 index 000000000000..687000b8fa21 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": [ + "authenticated", + "anonymous", + "customRole1" + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteConfiguredRoles", + "title": "Lists the configured roles for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json new file mode 100644 index 000000000000..a5f4baea5a49 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/config/appsettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteFunctionAppSettings", + "title": "Get function app settings of a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json new file mode 100644 index 000000000000..a3e8e48a55d6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/functions/GetList", + "properties": { + "functionName": "GetList", + "triggerType": "HttpTrigger" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteFunctions", + "title": "Gets the functions of a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json new file mode 100644 index 000000000000..97c11cbc9dd3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": { + "dnsOwnershipKey": "ownershipKey123123" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteSecrets", + "title": "List secrets for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json new file mode 100644 index 000000000000..9f52c5b5561e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "authprovider": "all", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/authproviders/all/users/1234", + "properties": { + "displayName": "username", + "provider": "aad", + "roles": "admin,anonymous,authenticated", + "userId": "1234" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteUsers", + "title": "List users for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json new file mode 100644 index 000000000000..63c01fe1af0c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/backups/12345", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-05T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBackups", + "title": "List web app backups" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json new file mode 100644 index 000000000000..f4689ef1b9e1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json @@ -0,0 +1,76 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListConfigurations", + "title": "List web app configurations" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json new file mode 100644 index 000000000000..27beb8001b76 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json @@ -0,0 +1,245 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "kind": "app", + "location": "East US", + "properties": { + "state": "Running", + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "repositorySiteName": "sitef6141", + "usageState": "Normal", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "availabilityState": "Normal", + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Standard" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Repository" + } + ], + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "reserved": false, + "isXenon": false, + "hyperV": false, + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "backupRestoreTraffic": false, + "managedIdentityTraffic": false + }, + "siteConfig": { + "numberOfWorkers": 1, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "netFrameworkVersion": "v4.0", + "phpVersion": "5.6", + "pythonVersion": "", + "nodeVersion": "", + "powerShellVersion": "", + "linuxFxVersion": "", + "requestTracingEnabled": false, + "remoteDebuggingEnabled": false, + "httpLoggingEnabled": false, + "acrUseManagedIdentityCreds": false, + "logsDirectorySizeLimit": 35, + "detailedErrorLoggingEnabled": false, + "use32BitWorkerProcess": true, + "webSocketsEnabled": false, + "alwaysOn": false, + "appCommandLine": "", + "managedPipelineMode": "Integrated", + "virtualApplications": [ + { + "virtualPath": "/", + "physicalPath": "site\\wwwroot", + "preloadEnabled": false + } + ], + "loadBalancing": "LeastRequests", + "autoHealEnabled": false, + "vnetName": "", + "vnetRouteAllEnabled": false, + "vnetPrivatePortsCount": 0, + "http20Enabled": false, + "minTlsVersion": "1.2", + "scmMinTlsVersion": "1.2", + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "minimumElasticInstanceCount": 0, + "azureStorageAccounts": {} + }, + "scmSiteAlsoStopped": false, + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "hostNamesDisabled": false, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "containerSize": 0, + "dailyMemoryTimeQuota": 0, + "resourceGroup": "testrg123", + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "httpsOnly": false, + "redundancyMode": "None", + "storageAccountRequired": false, + "keyVaultReferenceIdentity": "SystemAssigned" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/qa", + "name": "sitef6141/qa", + "type": "Microsoft.Web/sites/slots", + "kind": "app", + "location": "East US", + "properties": { + "state": "Running", + "hostNames": [ + "sitef6141-qa.azurewebsites.net" + ], + "repositorySiteName": "sitef6141", + "usageState": "Normal", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "availabilityState": "Normal", + "hostNameSslStates": [ + { + "name": "sitef6141-qa.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Standard" + }, + { + "name": "sitef6141-qa.scm.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Repository" + } + ], + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "reserved": false, + "isXenon": false, + "hyperV": false, + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "backupRestoreTraffic": false, + "managedIdentityTraffic": false + }, + "siteConfig": { + "numberOfWorkers": 1, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "netFrameworkVersion": "v4.0", + "phpVersion": "5.6", + "pythonVersion": "", + "nodeVersion": "", + "powerShellVersion": "", + "linuxFxVersion": "", + "requestTracingEnabled": false, + "remoteDebuggingEnabled": false, + "httpLoggingEnabled": false, + "acrUseManagedIdentityCreds": false, + "logsDirectorySizeLimit": 35, + "detailedErrorLoggingEnabled": false, + "use32BitWorkerProcess": true, + "webSocketsEnabled": false, + "alwaysOn": false, + "appCommandLine": "", + "managedPipelineMode": "Integrated", + "virtualApplications": [ + { + "virtualPath": "/", + "physicalPath": "site\\wwwroot", + "preloadEnabled": false + } + ], + "loadBalancing": "LeastRequests", + "autoHealEnabled": false, + "vnetName": "", + "vnetRouteAllEnabled": false, + "vnetPrivatePortsCount": 0, + "http20Enabled": false, + "minTlsVersion": "1.2", + "scmMinTlsVersion": "1.2", + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "minimumElasticInstanceCount": 0, + "azureStorageAccounts": {} + }, + "scmSiteAlsoStopped": false, + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "hostNamesDisabled": false, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "containerSize": 0, + "dailyMemoryTimeQuota": 0, + "resourceGroup": "testrg123", + "defaultHostName": "sitef6141-qa.azurewebsites.net", + "httpsOnly": false, + "redundancyMode": "None", + "storageAccountRequired": false, + "keyVaultReferenceIdentity": "SystemAssigned" + } + } + ] + } + } + }, + "operationId": "WebApps_ListSlots", + "title": "List Web App Slots" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json new file mode 100644 index 000000000000..b53e37230638 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json @@ -0,0 +1,253 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + { + "name": "sitef7252", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef7252", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef7252.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef7252.azurewebsites.net", + "sitef7252.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef7252.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef7252.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef7252.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef7252", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_List", + "title": "List Web apps for subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json new file mode 100644 index 000000000000..44f9503fc5ef --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json @@ -0,0 +1,254 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + { + "name": "sitef7252", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef7252", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef7252.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef7252.azurewebsites.net", + "sitef7252.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef7252.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef7252.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef7252.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef7252", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListByResourceGroup", + "title": "List Web Apps by Resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json new file mode 100644 index 000000000000..a05bcb93afe2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testsite2/a1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/a1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + { + "name": "testsite2/stateful2", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/testsub/resourceGroups/testrg/providers/Microsoft.Web/sites/testsite2/workflows/stateful2", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "error": { + "code": "InvalidWorkflowJson", + "message": "Invalid character after parsing property name. Expected ':' but got: \". Path '', line 2, position 2." + }, + "state": "Unhealthy" + } + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListWorkflows", + "title": "List the workflows" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json new file mode 100644 index 000000000000..127e62be5191 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "configurationName": "connections", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/connections", + "type": "Microsoft.Web/sites/workflowsconfiguration", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflowconfigurations/connections", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "string" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "string" + }, + "connectionRuntimeUrl": "string" + } + } + } + }, + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListWorkflowsConnections", + "title": "List the Instance Workflows Configuration Connections" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json new file mode 100644 index 000000000000..51cf90ecd9bc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "configurationName": "connections", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/connections", + "type": "Microsoft.Web/sites/workflowsconfiguration", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflowconfigurations/connections", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "string" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "string" + }, + "connectionRuntimeUrl": "string" + } + } + } + }, + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListWorkflowsConnectionsSlot", + "title": "List the Instance Workflows Configuration Connections Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json new file mode 100644 index 000000000000..2c8d32a3d8a0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testsite2/a1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/a1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + { + "name": "testsite2/stateful2", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/testsub/resourceGroups/testrg/providers/Microsoft.Web/sites/testsite2/workflows/stateful2", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "error": { + "code": "InvalidWorkflowJson", + "message": "Invalid character after parsing property name. Expected ':' but got: \". Path '', line 2, position 2." + }, + "state": "Unhealthy" + } + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListInstanceWorkflowsSlot", + "title": "List the workflows Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json new file mode 100644 index 000000000000..b073c6aabdf6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json @@ -0,0 +1,74 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-06-01-preview", + "appServicePlan": { + "kind": "app", + "properties": {} + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0" + } + } + }, + "operationId": "AppServicePlans_Update", + "title": "Patch Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json new file mode 100644 index 000000000000..6bc46c34db28 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json @@ -0,0 +1,38 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-06-01-preview", + "certificateEnvelope": { + "properties": { + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "Certificates_Update", + "title": "Patch Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json new file mode 100644 index 000000000000..3b1648e2038b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateEnvelope": { + "properties": { + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_Update", + "title": "Patch Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json new file mode 100644 index 000000000000..b87133e66356 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-06-01-preview", + "certificateEnvelope": { + "properties": { + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_UpdateSlot", + "title": "Patch Certificate for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json new file mode 100644 index 000000000000..09550ca8006d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json @@ -0,0 +1,67 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "staticSiteEnvelope": { + "properties": {} + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": [] + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": [] + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_UpdateStaticSite", + "title": "Patch a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..c04b2a10e925 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": {} + }, + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_UpdateBuildDatabaseConnection", + "title": "Patch a database connection for a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..03227132a40f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": {} + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_UpdateDatabaseConnection", + "title": "Patch a database connection for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json new file mode 100644 index 000000000000..b4775ef5cef8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json @@ -0,0 +1,59 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowArtifacts": { + "appSettings": { + "eventHub_connectionString": "Endpoint=sb://example.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=EXAMPLE1a2b3c4d5e6fEXAMPLE=" + }, + "files": { + "connections.json": { + "managedApiConnections": {}, + "serviceProviderConnections": { + "eventHub": { + "displayName": "example1", + "parameterValues": { + "connectionString": "@appsetting('eventHub_connectionString')" + }, + "serviceProvider": { + "id": "/serviceProviders/eventHub" + } + } + } + }, + "test1/workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "triggers": { + "When_events_are_available_in_Event_hub": { + "type": "ServiceProvider", + "inputs": { + "parameters": { + "eventHubName": "test123" + }, + "serviceProviderConfiguration": { + "operationId": "receiveEvents", + "connectionName": "eventHub", + "serviceProviderId": "/serviceProviders/eventHub" + } + }, + "splitOn": "@triggerOutputs()?['body']" + } + } + }, + "kind": "Stateful" + } + } + } + }, + "responses": { + "200": {} + }, + "operationId": "WebApps_DeployWorkflowArtifacts", + "title": "Deploys workflow artifacts" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json new file mode 100644 index 000000000000..ac760a6b0b8e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "testsSlot", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowArtifacts": { + "appSettings": { + "eventHub_connectionString": "Endpoint=sb://example.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=EXAMPLE1a2b3c4d5e6fEXAMPLE=" + }, + "files": { + "connections.json": { + "managedApiConnections": {}, + "serviceProviderConnections": { + "eventHub": { + "displayName": "example1", + "parameterValues": { + "connectionString": "@appsetting('eventHub_connectionString')" + }, + "serviceProvider": { + "id": "/serviceProviders/eventHub" + } + } + } + }, + "test1/workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "triggers": { + "When_events_are_available_in_Event_hub": { + "type": "ServiceProvider", + "inputs": { + "parameters": { + "eventHubName": "test123" + }, + "serviceProviderConfiguration": { + "operationId": "receiveEvents", + "connectionName": "eventHub", + "serviceProviderId": "/serviceProviders/eventHub" + } + }, + "splitOn": "@triggerOutputs()?['body']" + } + } + }, + "kind": "Stateful" + } + } + } + }, + "responses": { + "200": {} + }, + "operationId": "WebApps_DeployWorkflowArtifactsSlot", + "title": "Deploys workflow artifacts slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json new file mode 100644 index 000000000000..6ce5704fbf53 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "functionAppName": "testFunctionApp", + "isForced": "true", + "resourceGroupName": "rg", + "staticSiteUserProvidedFunctionEnvelope": { + "properties": { + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_RegisterUserProvidedFunctionAppWithStaticSite", + "title": "Register a user provided function app with a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json new file mode 100644 index 000000000000..f843f6e9aae3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json @@ -0,0 +1,49 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "functionAppName": "testFunctionApp", + "isForced": "true", + "resourceGroupName": "rg", + "staticSiteUserProvidedFunctionEnvelope": { + "properties": { + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_RegisterUserProvidedFunctionAppWithStaticSiteBuild", + "title": "Register a user provided function app with a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json new file mode 100644 index 000000000000..b88069aedf40 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resetPropertiesEnvelope": { + "properties": { + "repositoryToken": "repoToken123", + "shouldUpdateRepository": true + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {} + }, + "operationId": "StaticSites_ResetStaticSiteApiKey", + "title": "Reset the api key for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json new file mode 100644 index 000000000000..1626f8ae9d10 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "backupId": "123244", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "request": { + "properties": { + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "overwrite": true, + "siteName": "sitef6141", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=" + } + } + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_Restore", + "title": "Restore web app from backup" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json new file mode 100644 index 000000000000..9b3ac2e9f48d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartWebSiteNetworkTraceOperation", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json new file mode 100644 index 000000000000..2cf71f333f17 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartWebSiteNetworkTraceOperationSlot", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json new file mode 100644 index 000000000000..2fc5568b87cf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartNetworkTrace", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json new file mode 100644 index 000000000000..78009fa07354 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartNetworkTraceSlot", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json new file mode 100644 index 000000000000..0286c04986fb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "staticSiteZipDeploymentEnvelope": { + "properties": { + "apiZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/api-zipdeploy.zip", + "appZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/app-zipdeploy.zip", + "deploymentTitle": "Update index.html", + "functionLanguage": "testFunctionLanguage", + "provider": "testProvider" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateZipDeploymentForStaticSiteBuild", + "title": "Deploy a site from a zipped package to a particular static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json new file mode 100644 index 000000000000..bcc3e664ff54 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "staticSiteZipDeploymentEnvelope": { + "properties": { + "apiZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/api-zipdeploy.zip", + "appZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/app-zipdeploy.zip", + "deploymentTitle": "Update index.html", + "functionLanguage": "testFunctionLanguage", + "provider": "testProvider" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateZipDeploymentForStaticSite", + "title": "Deploy a site from a zipped package" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json new file mode 100644 index 000000000000..a6236a898734 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopWebSiteNetworkTrace", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json new file mode 100644 index 000000000000..b269c323ec12 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopWebSiteNetworkTraceSlot", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json new file mode 100644 index 000000000000..d538f56ca34e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopNetworkTrace", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json new file mode 100644 index 000000000000..dde74288e554 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopNetworkTraceSlot", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json new file mode 100644 index 000000000000..cb1f45a5b4fc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "cleanUpAuth": true, + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_UnlinkBackend", + "title": "Unlink a backend from a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json new file mode 100644 index 000000000000..67378dc910fd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "cleanUpAuth": true, + "environmentName": "12", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_UnlinkBackendFromBuild", + "title": "Unlink a backend from a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json new file mode 100644 index 000000000000..8b2f94ef4d52 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "appSettings": { + "properties": { + "Setting1": "Value1", + "Setting2": "Value2" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appsettings", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/appsettings", + "kind": "app", + "properties": { + "Setting1": "Value1", + "Setting2": "Value2" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateApplicationSettings", + "title": "Update App Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json new file mode 100644 index 000000000000..bf2ef1a8a847 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-06-01-preview", + "customDnsSuffixConfiguration": { + "properties": { + "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", + "dnsSuffix": "contoso.com", + "keyVaultReferenceIdentity": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/test-rg/providers/microsoft.managedidentity/userassignedidentities/test-user-mi" + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "customDnsSuffix", + "type": "Microsoft.Web/hostingEnvironments/configurations/customdnssuffix", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/customdnssuffix", + "properties": { + "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", + "dnsSuffix": "contoso.com", + "keyVaultReferenceIdentity": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/test-rg/providers/microsoft.managedidentity/userassignedidentities/test-user-mi", + "provisioningDetails": null, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateAseCustomDnsSuffixConfiguration", + "title": "Update ASE custom DNS suffix configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json new file mode 100644 index 000000000000..320434b61d46 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json @@ -0,0 +1,49 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteAuthSettings": { + "properties": { + "allowedExternalRedirectUrls": [ + "sitef6141.customdomain.net", + "sitef6141.customdomain.info" + ], + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "defaultProvider": "Google", + "enabled": true, + "runtimeVersion": "~1", + "tokenRefreshExtensionHours": 120, + "tokenStoreEnabled": true, + "unauthenticatedClientAction": "RedirectToLoginPage" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettings", + "type": "Microsoft.Web/sites/authsettings", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettings", + "kind": "app", + "properties": { + "allowedExternalRedirectUrls": [ + "sitef6141.customdomain.net", + "sitef6141.customdomain.info" + ], + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "defaultProvider": "Google", + "enabled": true, + "runtimeVersion": "~1", + "tokenRefreshExtensionHours": 120, + "tokenStoreEnabled": true, + "unauthenticatedClientAction": "RedirectToLoginPage" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateAuthSettings", + "title": "Update Auth Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json new file mode 100644 index 000000000000..cf8485ceb5fc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json @@ -0,0 +1,157 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteAuthSettingsV2": { + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettingsv2", + "type": "Microsoft.Web/sites/authsettingsv2", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettingsv2", + "kind": "app", + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateAuthSettingsV2", + "title": "Update Auth Settings V2" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json new file mode 100644 index 000000000000..e38309cfe970 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "azureStorageAccounts": { + "properties": { + "account1": { + "type": "AzureFiles", + "accessKey": "26515^%@#*", + "accountName": "testsa", + "mountPath": "/mounts/a/files", + "shareName": "web" + } + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "account1": { + "type": "AzureFiles", + "accountName": "testsa", + "mountPath": "/mounts/a/files", + "shareName": "web", + "state": "Ok" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateAzureStorageAccounts", + "title": "Update Azure Storage Accounts" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json new file mode 100644 index 000000000000..51a103019aad --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "contoso", + "api-version": "2026-06-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + } + }, + "operationId": "WebApps_UpdateMachineKey", + "title": "Updates the machine key for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json new file mode 100644 index 000000000000..8b766094a772 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateScmAllowed", + "title": "Update SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json new file mode 100644 index 000000000000..02c876361162 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateScmAllowedSlot", + "title": "Update SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json new file mode 100644 index 000000000000..6e8a0dd17f03 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateFtpAllowedSlot", + "title": "Update FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json new file mode 100644 index 000000000000..14483fe08e9f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-06-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateFtpAllowed", + "title": "Update FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json new file mode 100644 index 000000000000..fec7772d7330 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json @@ -0,0 +1,125 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteConfig": { + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_CreateOrUpdateConfiguration", + "title": "Update Site Config" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json new file mode 100644 index 000000000000..08adec1eda1b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "authprovider": "aad", + "resourceGroupName": "rg", + "staticSiteUserEnvelope": { + "properties": { + "roles": "contributor" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "userid": "1234" + }, + "responses": { + "200": { + "body": { + "properties": { + "displayName": "username", + "provider": "aad", + "roles": "contributor,anonymous,authenticated", + "userId": "1234" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_UpdateStaticSiteUser", + "title": "Create or update a user for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json new file mode 100644 index 000000000000..e4f925c9b508 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json @@ -0,0 +1,261 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_Update", + "title": "Update web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json new file mode 100644 index 000000000000..d65c2ebcbab7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json @@ -0,0 +1,252 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WebApps_UpdateSlot", + "title": "Update Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json new file mode 100644 index 000000000000..5d3f9e8e8852 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/linkedBackends/testBackend/operationresults/operationId" + } + }, + "204": {} + }, + "operationId": "StaticSites_ValidateBackend", + "title": "Validate if backend can be linked to static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json new file mode 100644 index 000000000000..e32540b8eb75 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend/operationresults/operationId" + } + }, + "204": {} + }, + "operationId": "StaticSites_ValidateBackendForBuild", + "title": "Validate if backend can be linked to static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json new file mode 100644 index 000000000000..896a977d24df --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-06-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "staticSiteCustomDomainRequestPropertiesEnvelope": { + "properties": {} + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_ValidateCustomDomainCanBeAddedToStaticSite", + "title": "Validate a custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json new file mode 100644 index 000000000000..1a25b0bbf900 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-06-01-preview", + "parameters": { + "properties": { + "vnetName": "vNet123", + "vnetResourceGroup": "vNet123rg", + "vnetSubnetName": "vNet123SubNet" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/verifyHostingEnvironmentVnet", + "properties": { + "failed": false, + "failedTests": [] + } + } + } + }, + "operationId": "VerifyHostingEnvironmentVnet", + "title": "VerifyHostingEnvironmentVnet" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json new file mode 100644 index 000000000000..ea667fb25012 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json @@ -0,0 +1,73 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "HTTP_Webhook", + "api-version": "2026-06-01-preview", + "repetitionName": "000001", + "requestHistoryName": "08586611142732800686", + "resourceGroupName": "test-resource-group", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "08586611142732800686", + "type": "Microsoft.Web/sites/workflows/runs/actions/requestHistories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586611142736787787412824395CU21/actions/HTTP_Webhook/requestHistories/08586611142732800686", + "location": "West US", + "properties": { + "endTime": "2018-10-25T18:36:52.1863033Z", + "response": { + "bodyLink": { + "contentHash": { + "algorithm": "md5", + "value": "2LOOAR8Eh2pd7AvRHXUhRg==" + }, + "contentSize": 137, + "contentVersion": "2LOOAR8Eh2pd7AvRHXUhRg==", + "uri": "https://tempuri.org" + }, + "headers": { + "Cache-Control": "private", + "Date": "Thu, 25 Oct 2018 18:36:51 GMT", + "Location": "http://www.bing.com/", + "Server": "Microsoft-IIS/10.0", + "X-AspNet-Version": "4.0.30319", + "X-Powered-By": "ASP.NET" + }, + "statusCode": 302 + }, + "startTime": "2018-10-25T18:36:51.9206732Z", + "request": { + "method": "GET", + "headers": { + "Accept-Language": "en-US", + "User-Agent": "azure-logic-apps/1.0,(workflow 80244732be3648f59d2084fd979cdd56; version 08586611142904036539)", + "x-ms-action-tracking-id": "ad27f634-6523-492f-924e-9a75e28619c8", + "x-ms-client-request-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-client-tracking-id": "08586611142736787787412824395CU21", + "x-ms-correlation-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-execution-location": "brazilsouth", + "x-ms-tracking-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-workflow-id": "80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-name": "test-workflow", + "x-ms-workflow-operation-name": "HTTP_Webhook", + "x-ms-workflow-resourcegroup-name": "test-resource-group", + "x-ms-workflow-run-id": "08586611142736787787412824395CU21", + "x-ms-workflow-run-tracking-id": "b4cd2e77-f949-4d8c-8753-791407aebde8", + "x-ms-workflow-subscription-capacity": "Large", + "x-ms-workflow-subscription-id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "x-ms-workflow-system-id": "/locations/brazilsouth/scaleunits/prod-17/workflows/80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-version": "08586611142904036539" + }, + "uri": "http://tempuri.org" + } + } + } + } + }, + "operationId": "WorkflowRunActionRepetitionsRequestHistories_Get", + "title": "Get a repetition request history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json new file mode 100644 index 000000000000..0196156a4ce6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json @@ -0,0 +1,76 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "HTTP_Webhook", + "api-version": "2026-06-01-preview", + "repetitionName": "000001", + "resourceGroupName": "test-resource-group", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "08586611142732800686", + "type": "Microsoft.Web/sites/workflows/runs/actions/requestHistories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586611142736787787412824395CU21/actions/HTTP_Webhook/requestHistories/08586611142732800686", + "location": "West US", + "properties": { + "endTime": "2018-10-25T18:36:52.1863033Z", + "response": { + "bodyLink": { + "contentHash": { + "algorithm": "md5", + "value": "2LOOAR8Eh2pd7AvRHXUhRg==" + }, + "contentSize": 137, + "contentVersion": "2LOOAR8Eh2pd7AvRHXUhRg==", + "uri": "https://tempuri.org" + }, + "headers": { + "Cache-Control": "private", + "Date": "Thu, 25 Oct 2018 18:36:51 GMT", + "Location": "http://www.bing.com/", + "Server": "Microsoft-IIS/10.0", + "X-AspNet-Version": "4.0.30319", + "X-Powered-By": "ASP.NET" + }, + "statusCode": 302 + }, + "startTime": "2018-10-25T18:36:51.9206732Z", + "request": { + "method": "GET", + "headers": { + "Accept-Language": "en-US", + "User-Agent": "azure-logic-apps/1.0,(workflow 80244732be3648f59d2084fd979cdd56; version 08586611142904036539)", + "x-ms-action-tracking-id": "ad27f634-6523-492f-924e-9a75e28619c8", + "x-ms-client-request-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-client-tracking-id": "08586611142736787787412824395CU21", + "x-ms-correlation-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-execution-location": "brazilsouth", + "x-ms-tracking-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-workflow-id": "80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-name": "test-workflow", + "x-ms-workflow-operation-name": "HTTP_Webhook", + "x-ms-workflow-resourcegroup-name": "test-resource-group", + "x-ms-workflow-run-id": "08586611142736787787412824395CU21", + "x-ms-workflow-run-tracking-id": "b4cd2e77-f949-4d8c-8753-791407aebde8", + "x-ms-workflow-subscription-capacity": "Large", + "x-ms-workflow-subscription-id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "x-ms-workflow-system-id": "/locations/brazilsouth/scaleunits/prod-17/workflows/80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-version": "08586611142904036539" + }, + "uri": "http://tempuri.org" + } + } + } + ] + } + } + }, + "operationId": "WorkflowRunActionRepetitionsRequestHistories_List", + "title": "List repetition request history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json new file mode 100644 index 000000000000..cbb06fa52efa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json @@ -0,0 +1,59 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-06-01-preview", + "repetitionName": "000001", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "name": "000001", + "type": "Microsoft.Web/sites/workflows/runs/actions/repetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/testAction/repetitions/000001", + "location": "West US", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.1015421Z", + "inputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionInputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dLmnt50joimEMK4k9rR6njHQh94iSFJ9rrDxFbkEg5M" + }, + "outputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionOutputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=B3-X5sqIAv1Lb31GOD34ZgIRUXGuiM2QllWiNwXFYAw" + }, + "repetitionIndexes": [ + { + "itemIndex": 1, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.0929911Z", + "status": "Succeeded", + "trackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3" + } + } + } + }, + "operationId": "WorkflowRunActionRepetitions_Get", + "title": "Get a repetition" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json new file mode 100644 index 000000000000..4f68e49471ca --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json @@ -0,0 +1,103 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "000000", + "type": "Microsoft.Web/sites/workflows/runs/actions/repetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/testAction/repetitions/000000", + "location": "West US", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "0d8152bb-e198-44a9-bde8-5138eea16dd4", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.2264835Z", + "inputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "8q1zMKS5ZyHBrPF+qF1xXw==" + }, + "contentSize": 8, + "contentVersion": "8q1zMKS5ZyHBrPF+qF1xXw==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000000/contents/ActionInputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000000%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=vw4BDdYp4Ap5RXdM7tY_wl9C38DeAHfnixLBEOpideA" + }, + "outputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "8q1zMKS5ZyHBrPF+qF1xXw==" + }, + "contentSize": 8, + "contentVersion": "8q1zMKS5ZyHBrPF+qF1xXw==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000000/contents/ActionOutputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000000%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=y8Wq7jbu85tmlMo_1zpRyqNJuoCaQCFQtZ3bgSovLY0" + }, + "repetitionIndexes": [ + { + "itemIndex": 0, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.217991Z", + "status": "Succeeded", + "trackingId": "0d8152bb-e198-44a9-bde8-5138eea16dd4" + } + }, + { + "name": "000001", + "type": "Microsoft.Web/sites/workflows/runs/actions/repetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/testAction/repetitions/000001", + "location": "West US", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.1015421Z", + "inputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionInputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dLmnt50joimEMK4k9rR6njHQh94iSFJ9rrDxFbkEg5M" + }, + "outputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionOutputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=B3-X5sqIAv1Lb31GOD34ZgIRUXGuiM2QllWiNwXFYAw" + }, + "repetitionIndexes": [ + { + "itemIndex": 1, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.0929911Z", + "status": "Succeeded", + "trackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3" + } + } + ] + } + } + }, + "operationId": "WorkflowRunActionRepetitions_List", + "title": "List repetitions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json new file mode 100644 index 000000000000..faeb7ccbdc2c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-06-01-preview", + "repetitionName": "000001", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "inputs": [ + { + "path": "", + "text": "items('For_each')?['OccuringLocation']?['Environment']", + "value": "PROD" + } + ] + } + } + }, + "operationId": "WorkflowRunActionRepetitions_ListExpressionTraces", + "title": "List expression traces for a repetition" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json new file mode 100644 index 000000000000..57b5220b57eb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "for_each", + "api-version": "2026-06-01-preview", + "repetitionName": "000000", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "name": "000000", + "type": "Microsoft.Web/sites/workflows/runs/actions/scopeRepetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/for_each/scopeRepetitions/000000", + "location": "West US", + "properties": { + "code": "NotSpecified", + "correlation": { + "actionTrackingId": "5c0e7c24-4891-44e8-b631-8084c5531dd5", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.6240967Z", + "repetitionIndexes": [ + { + "itemIndex": 0, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.209588Z", + "status": "Succeeded" + } + } + } + }, + "operationId": "WorkflowRunActionScopeRepetitions_Get", + "title": "Get a scoped repetition" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json new file mode 100644 index 000000000000..22fef3f594b3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json @@ -0,0 +1,65 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "for_each", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "000000", + "type": "Microsoft.Web/sites/workflows/runs/actions/scopeRepetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/for_each/scopeRepetitions/000000", + "location": "West US", + "properties": { + "code": "NotSpecified", + "correlation": { + "actionTrackingId": "5c0e7c24-4891-44e8-b631-8084c5531dd5", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.6240967Z", + "repetitionIndexes": [ + { + "itemIndex": 0, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.209588Z", + "status": "Succeeded" + } + }, + { + "name": "000001", + "type": "Microsoft.Web/sites/workflows/runs/actions/scopeRepetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/for_each/scopeRepetitions/000001", + "location": "West US", + "properties": { + "code": "NotSpecified", + "correlation": { + "actionTrackingId": "1682d0bd-7189-4478-b333-fe364a80bd69", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.2272796Z", + "repetitionIndexes": [ + { + "itemIndex": 1, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.0686808Z", + "status": "Succeeded" + } + } + ] + } + } + }, + "operationId": "WorkflowRunActionScopeRepetitions_List", + "title": "List the scoped repetitions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json new file mode 100644 index 000000000000..1d4f8de64f59 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "HTTP", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "HTTP", + "type": "Microsoft.Web/sites/workflows/runs/actions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586676746934337772206998657CU22/actions/HTTP", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "56063357-45dd-4278-9be5-8220ce0cc9ca", + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5450625Z", + "inputsLink": { + "contentSize": 138, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionInputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dJ6F00000aaaabbbbccccddddeeeeffff78co" + }, + "outputsLink": { + "contentSize": 15660, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionOutputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=fIIgF00000aaaabbbbccccddddeeeeffffWRU0" + }, + "startTime": "2018-08-10T20:16:32.305236Z", + "status": "Succeeded" + } + } + } + }, + "operationId": "WorkflowRunActions_Get", + "title": "Get a workflow run action" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json new file mode 100644 index 000000000000..b6e3e5e7f7f2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json @@ -0,0 +1,43 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "HTTP", + "type": "Microsoft.Web/sites/workflows/runs/actions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586676746934337772206998657CU22/actions/HTTP", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "56063357-45dd-4278-9be5-8220ce0cc9ca", + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5450625Z", + "inputsLink": { + "contentSize": 138, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionInputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dJ6F00000aaaabbbbccccddddeeeeffff78co" + }, + "outputsLink": { + "contentSize": 15660, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionOutputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=fIIgF00000aaaabbbbccccddddeeeeffffWRU0" + }, + "startTime": "2018-08-10T20:16:32.305236Z", + "status": "Succeeded" + } + } + ] + } + } + }, + "operationId": "WorkflowRunActions_List", + "title": "List a workflow run actions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json new file mode 100644 index 000000000000..454f7104d38f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-06-01-preview", + "repetitionName": "000001", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "inputs": [ + { + "path": "", + "text": "add(4, 4)", + "value": 8 + } + ] + } + } + }, + "operationId": "WorkflowRunActions_ListExpressionTraces", + "title": "List expression traces" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json new file mode 100644 index 000000000000..d11b4d5b2c0c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": {} + }, + "operationId": "WorkflowRuns_Cancel", + "title": "Cancel a workflow run" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json new file mode 100644 index 000000000000..07af784ea664 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json @@ -0,0 +1,47 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/runs/08586676746934337772206998657CU22", + "properties": { + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5779999Z", + "outputs": {}, + "startTime": "2018-08-10T20:16:32.044238Z", + "status": "Succeeded", + "trigger": { + "name": "Recurrence", + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.0387927Z", + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + }, + "waitEndTime": "2018-08-10T20:16:32.044238Z", + "workflow": { + "name": "08586676754160363885", + "type": "Microsoft.Web/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/versions/08586676754160363885" + } + } + } + } + }, + "operationId": "WorkflowRuns_Get", + "title": "Get a run for a workflow" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json new file mode 100644 index 000000000000..f2ac86f334d1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json @@ -0,0 +1,50 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/runs/08586676746934337772206998657CU22", + "properties": { + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5779999Z", + "outputs": {}, + "startTime": "2018-08-10T20:16:32.044238Z", + "status": "Succeeded", + "trigger": { + "name": "Recurrence", + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.0387927Z", + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + }, + "waitEndTime": "2018-08-10T20:16:32.044238Z", + "workflow": { + "name": "08586676754160363885", + "type": "Microsoft.Web/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/versions/08586676754160363885" + } + } + } + ] + } + } + }, + "operationId": "WorkflowRuns_List", + "title": "List workflow runs" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json new file mode 100644 index 000000000000..3f0fdae2ab09 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json @@ -0,0 +1,38 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "historyName": "08586676746934337772206998657CU22", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTriggerName", + "workflowName": "testWorkflowName" + }, + "responses": { + "200": { + "body": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/triggers/histories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22", + "properties": { + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.2987996Z", + "fired": true, + "run": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/runs/08586676746934337772206998657CU22" + }, + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + } + } + } + }, + "operationId": "WorkflowTriggerHistories_Get", + "title": "Get a workflow trigger history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json new file mode 100644 index 000000000000..fa669ad0e4d6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTriggerName", + "workflowName": "testWorkflowName" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/triggers/histories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22", + "properties": { + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.2987996Z", + "fired": true, + "run": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/runs/08586676746934337772206998657CU22" + }, + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + } + } + ] + } + } + }, + "operationId": "WorkflowTriggerHistories_List", + "title": "List a workflow trigger history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json new file mode 100644 index 000000000000..6e4bb5110f1b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "historyName": "testHistoryName", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTriggerName", + "workflowName": "testWorkflowName" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WorkflowTriggerHistories_Resubmit", + "title": "Resubmit a workflow run based on the trigger history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json new file mode 100644 index 000000000000..175018b15b61 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "manual", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "manual", + "type": "Microsoft.Web/sites/workflows/triggers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/triggers/manual", + "properties": { + "changedTime": "2018-08-10T18:47:49.5288666Z", + "createdTime": "2018-08-10T17:32:30.2496336Z", + "provisioningState": "Succeeded", + "state": "Enabled", + "workflow": { + "name": "08586676800160476478", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586676800160476478" + } + } + } + } + }, + "operationId": "WorkflowTriggers_Get", + "title": "Get a workflow trigger" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json new file mode 100644 index 000000000000..5eb252da337b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTrigger", + "workflowName": "testWorkflow" + }, + "responses": { + "200": { + "body": { + "content": "JsonContent", + "title": "JsonTitle" + } + } + }, + "operationId": "WorkflowTriggers_GetSchemaJson", + "title": "Get trigger schema" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json new file mode 100644 index 000000000000..a5816b0ba460 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "manual", + "type": "Microsoft.Web/sites/workflows/triggers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/triggers/manual", + "properties": { + "changedTime": "2018-08-10T18:47:49.5288666Z", + "createdTime": "2018-08-10T17:32:30.2496336Z", + "provisioningState": "Succeeded", + "state": "Enabled", + "workflow": { + "name": "08586676800160476478", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586676800160476478" + } + } + } + ] + } + } + }, + "operationId": "WorkflowTriggers_List", + "title": "List workflow triggers" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json new file mode 100644 index 000000000000..69b48c814f48 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "manual", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "method": "POST", + "basePath": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/fb9c8d79b15f41ce9b12861862f43546/versions/08587100027316071865/triggers/manualTrigger/paths/invoke", + "queries": { + "api-version": "2018-07-01-preview", + "sig": "IxEQ_ygZf6WNEQCbjV0Vs6p6Y4DyNEJVAa86U5B4xhk", + "sp": "/versions/08587100027316071865/triggers/manualTrigger/run", + "sv": "1.0" + }, + "value": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/fb9c8d79b15f41ce9b12861862f43546/versions/08587100027316071865/triggers/manualTrigger/paths/invoke?api-version=2015-08-01-preview&sp=%2Fversions%2F08587100027316071865%2Ftriggers%2FmanualTrigger%2Frun&sv=1.0&sig=IxEQ_ygZf6WNEQCbjV0Vs6p6Y4DyNEJVAa86U5B4xhk" + } + } + }, + "operationId": "WorkflowTriggers_ListCallbackUrl", + "title": "Get the callback URL for a trigger" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json new file mode 100644 index 000000000000..03adf041130c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "recurrence", + "workflowName": "test-workflow" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" + } + } + }, + "operationId": "WorkflowTriggers_Run", + "title": "Run a workflow trigger" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json new file mode 100644 index 000000000000..de593ef9daf5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json @@ -0,0 +1,45 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "versionId": "08586676824806722526", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "test-workflow", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586676824806722526", + "location": "West US", + "properties": { + "changedTime": "2018-08-09T22:54:54.3533634Z", + "createdTime": "2018-04-25T01:39:21.4365247Z", + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + }, + "endpointsConfiguration": { + "connector": { + "outgoingIpAddresses": [] + }, + "workflow": { + "accessEndpointIpAddresses": [], + "outgoingIpAddresses": [] + } + }, + "parameters": {}, + "version": "08586677515911718341" + } + } + } + }, + "operationId": "WorkflowVersions_Get", + "title": "Get a workflow version" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json new file mode 100644 index 000000000000..24e97f67cb3a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "test-workflow", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586677515911718341", + "location": "West US", + "properties": { + "changedTime": "2018-08-09T22:54:54.3533634Z", + "createdTime": "2018-04-25T01:39:21.4365247Z", + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + }, + "endpointsConfiguration": { + "connector": { + "outgoingIpAddresses": [] + }, + "workflow": { + "accessEndpointIpAddresses": [], + "outgoingIpAddresses": [] + } + }, + "parameters": {}, + "version": "08586677515911718341" + } + } + ] + } + } + }, + "operationId": "WorkflowVersions_List", + "title": "List a workflows versions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json new file mode 100644 index 000000000000..791ba13ac34e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "keyType": { + "keyType": "Primary" + }, + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testWorkflowName" + }, + "responses": { + "200": {} + }, + "operationId": "Workflows_RegenerateAccessKey", + "title": "Regenerate the callback URL access key for request triggers" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json new file mode 100644 index 000000000000..21faff295dab --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-06-01-preview", + "location": "brazilsouth", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "validate": { + "properties": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + }, + "kind": "Stateful" + } + }, + "workflowName": "test-workflow" + }, + "responses": { + "200": {} + }, + "operationId": "Workflows_Validate", + "title": "Validate a workflow" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json new file mode 100644 index 000000000000..c6ab30be6e52 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json @@ -0,0 +1,59596 @@ +{ + "swagger": "2.0", + "info": { + "title": "WebApps API Client", + "version": "2026-06-01-preview", + "x-typespec-generated": [ + { + "emitter": "@azure-tools/typespec-autorest" + } + ] + }, + "schemes": [ + "https" + ], + "host": "management.azure.com", + "produces": [ + "application/json" + ], + "consumes": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "description": "Azure Active Directory OAuth2 Flow.", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "tags": [ + { + "name": "Provider" + }, + { + "name": "Operations" + }, + { + "name": "AppServiceEnvironments" + }, + { + "name": "Recommendations" + }, + { + "name": "StaticSites" + }, + { + "name": "WebApps" + }, + { + "name": "AppServicePlans" + }, + { + "name": "Certificates" + }, + { + "name": "SiteCertificates" + }, + { + "name": "DeletedWebApps" + }, + { + "name": "Global" + }, + { + "name": "Diagnostics" + }, + { + "name": "KubeEnvironments" + }, + { + "name": "ResourceHealthMetadata" + }, + { + "name": "Workflows" + }, + { + "name": "AiGateways" + }, + { + "name": "WorkflowRuns" + }, + { + "name": "WorkflowRunActions" + }, + { + "name": "WorkflowTriggers" + }, + { + "name": "WorkflowTriggerHistories" + }, + { + "name": "WorkflowVersions" + } + ], + "paths": { + "/providers/Microsoft.Web/availableStacks": { + "get": { + "operationId": "Provider_GetAvailableStacks", + "tags": [ + "Provider" + ], + "summary": "Get available application frameworks and their versions", + "description": "Description for Get available application frameworks and their versions", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "osTypeSelected", + "in": "query", + "required": false, + "type": "string", + "enum": [ + "Windows", + "Linux", + "WindowsFunctions", + "LinuxFunctions", + "All" + ], + "x-ms-enum": { + "name": "ProviderOsTypeSelected", + "modelAsString": true, + "values": [ + { + "name": "Windows", + "value": "Windows" + }, + { + "name": "Linux", + "value": "Linux" + }, + { + "name": "WindowsFunctions", + "value": "WindowsFunctions" + }, + { + "name": "LinuxFunctions", + "value": "LinuxFunctions" + }, + { + "name": "All", + "value": "All" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ApplicationStackCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/providers/Microsoft.Web/functionAppStacks": { + "get": { + "operationId": "Provider_GetFunctionAppStacks", + "tags": [ + "Provider" + ], + "summary": "Get available Function app frameworks and their versions", + "description": "Description for Get available Function app frameworks and their versions", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "stackOsType", + "in": "query", + "description": "Stack OS Type", + "required": false, + "type": "string", + "enum": [ + "Windows", + "Linux", + "All" + ], + "x-ms-enum": { + "name": "ProviderStackOsType", + "modelAsString": true, + "values": [ + { + "name": "Windows", + "value": "Windows" + }, + { + "name": "Linux", + "value": "Linux" + }, + { + "name": "All", + "value": "All" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/FunctionAppStackCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Function App Stacks": { + "$ref": "./examples/GetFunctionAppStacks.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/providers/Microsoft.Web/locations/{location}/functionAppStacks": { + "get": { + "operationId": "Provider_GetFunctionAppStacksForLocation", + "tags": [ + "Provider" + ], + "summary": "Get available Function app frameworks and their versions for location", + "description": "Description for Get available Function app frameworks and their versions for location", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + }, + { + "name": "stackOsType", + "in": "query", + "description": "Stack OS Type", + "required": false, + "type": "string", + "enum": [ + "Windows", + "Linux", + "All" + ], + "x-ms-enum": { + "name": "ProviderStackOsType", + "modelAsString": true, + "values": [ + { + "name": "Windows", + "value": "Windows" + }, + { + "name": "Linux", + "value": "Linux" + }, + { + "name": "All", + "value": "All" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/FunctionAppStackCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Locations Function App Stacks": { + "$ref": "./examples/GetFunctionAppStacksForLocation.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/providers/Microsoft.Web/locations/{location}/webAppStacks": { + "get": { + "operationId": "Provider_GetWebAppStacksForLocation", + "tags": [ + "Provider" + ], + "summary": "Get available Web app frameworks and their versions for location", + "description": "Description for Get available Web app frameworks and their versions for location", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + }, + { + "name": "stackOsType", + "in": "query", + "description": "Stack OS Type", + "required": false, + "type": "string", + "enum": [ + "Windows", + "Linux", + "All" + ], + "x-ms-enum": { + "name": "ProviderStackOsType", + "modelAsString": true, + "values": [ + { + "name": "Windows", + "value": "Windows" + }, + { + "name": "Linux", + "value": "Linux" + }, + { + "name": "All", + "value": "All" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/WebAppStackCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Locations Web App Stacks": { + "$ref": "./examples/GetWebAppStacksForLocation.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/providers/Microsoft.Web/operations": { + "get": { + "operationId": "Provider_ListOperations", + "tags": [ + "Provider", + "Operations" + ], + "summary": "Gets all available operations for the Microsoft.Web resource provider. Also exposes resource metric definitions", + "description": "Description for Gets all available operations for the Microsoft.Web resource provider. Also exposes resource metric definitions", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmOperationCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List operations": { + "$ref": "./examples/ListOperations.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/providers/Microsoft.Web/publishingUsers/web": { + "get": { + "operationId": "GetPublishingUser", + "summary": "Gets publishing user", + "description": "Description for Gets publishing user", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/User" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "UpdatePublishingUser", + "summary": "Updates publishing user", + "description": "Description for Updates publishing user", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "userDetails", + "in": "body", + "description": "Details of publishing user", + "required": true, + "schema": { + "$ref": "#/definitions/User" + } + } + ], + "responses": { + "200": { + "description": "Resource 'User' update operation succeeded", + "schema": { + "$ref": "#/definitions/User" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/providers/Microsoft.Web/sourcecontrols": { + "get": { + "operationId": "ListSourceControls", + "summary": "Gets the source controls available for Azure websites.", + "description": "Description for Gets the source controls available for Azure websites.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SourceControlCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/providers/Microsoft.Web/sourcecontrols/{sourceControlType}": { + "get": { + "operationId": "GetSourceControl", + "summary": "Gets source control token", + "description": "Description for Gets source control token", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "sourceControlType", + "in": "path", + "description": "Type of source control", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SourceControl" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "UpdateSourceControl", + "summary": "Updates source control token", + "description": "Description for Updates source control token", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "sourceControlType", + "in": "path", + "description": "Type of source control", + "required": true, + "type": "string" + }, + { + "name": "requestMessage", + "in": "body", + "description": "Source control token information", + "required": true, + "schema": { + "$ref": "#/definitions/SourceControl" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SourceControl' update operation succeeded", + "schema": { + "$ref": "#/definitions/SourceControl" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/providers/Microsoft.Web/webAppStacks": { + "get": { + "operationId": "Provider_GetWebAppStacks", + "tags": [ + "Provider" + ], + "summary": "Get available Web app frameworks and their versions", + "description": "Description for Get available Web app frameworks and their versions", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "name": "stackOsType", + "in": "query", + "description": "Stack OS Type", + "required": false, + "type": "string", + "enum": [ + "Windows", + "Linux", + "All" + ], + "x-ms-enum": { + "name": "ProviderStackOsType", + "modelAsString": true, + "values": [ + { + "name": "Windows", + "value": "Windows" + }, + { + "name": "Linux", + "value": "Linux" + }, + { + "name": "All", + "value": "All" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/WebAppStackCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Web App Stacks": { + "$ref": "./examples/GetWebAppStacks.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/aigateways": { + "get": { + "operationId": "AiGateways_ListBySubscription", + "tags": [ + "AiGateways" + ], + "description": "List AiGateway resources by subscription ID", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AiGatewayListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ListAiGatewaysBySubscription": { + "$ref": "./examples/AIGateways_ListBySubscription.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/aseRegions": { + "get": { + "operationId": "ListAseRegions", + "summary": "Get a list of available ASE regions and its supported Skus.", + "description": "Description for get a list of available ASE regions and its supported Skus.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/AseRegionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List aseregions": { + "$ref": "./examples/ListAseRegions.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/availableStacks": { + "get": { + "operationId": "Provider_GetAvailableStacksOnPrem", + "tags": [ + "Provider" + ], + "summary": "Get available application frameworks and their versions", + "description": "Description for Get available application frameworks and their versions", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "osTypeSelected", + "in": "query", + "required": false, + "type": "string", + "enum": [ + "Windows", + "Linux", + "WindowsFunctions", + "LinuxFunctions", + "All" + ], + "x-ms-enum": { + "name": "ProviderOsTypeSelected", + "modelAsString": true, + "values": [ + { + "name": "Windows", + "value": "Windows" + }, + { + "name": "Linux", + "value": "Linux" + }, + { + "name": "WindowsFunctions", + "value": "WindowsFunctions" + }, + { + "name": "LinuxFunctions", + "value": "LinuxFunctions" + }, + { + "name": "All", + "value": "All" + } + ] + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ApplicationStackCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/billingMeters": { + "get": { + "operationId": "ListBillingMeters", + "summary": "Gets a list of meters for a given location.", + "description": "Description for Gets a list of meters for a given location.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "billingLocation", + "in": "query", + "description": "Azure Location of billable resource", + "required": false, + "type": "string" + }, + { + "name": "osType", + "in": "query", + "description": "App Service OS type meters used for", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/BillingMeterCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/certificates": { + "get": { + "operationId": "Certificates_List", + "tags": [ + "Certificates" + ], + "summary": "Get all certificates for a subscription.", + "description": "Description for Get all certificates for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only information specified in the filter (using OData syntax). For example: $filter=KeyVaultId eq 'KeyVaultId'", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CertificateCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Certificates for subscription": { + "$ref": "./examples/ListCertificates.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/checknameavailability": { + "post": { + "operationId": "CheckNameAvailability", + "summary": "Check if a resource name is available.", + "description": "Description for Check if a resource name is available.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "request", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/ResourceNameAvailabilityRequest" + }, + "x-ms-client-flatten": true + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ResourceNameAvailability" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/customhostnameSites": { + "get": { + "operationId": "ListCustomHostNameSites", + "summary": "Get custom hostnames under this subscription", + "description": "Get custom hostnames under this subscription", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "hostname", + "in": "query", + "description": "Specific hostname", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/CustomHostnameSitesCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get custom hostnames under subscription": { + "$ref": "./examples/ListCustomHostNameSites.json" + }, + "Get specific custom hostname under subscription": { + "$ref": "./examples/ListCustomSpecificHostNameSites.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/deletedSites": { + "get": { + "operationId": "DeletedWebApps_List", + "tags": [ + "DeletedWebApps" + ], + "summary": "Get all deleted apps for a subscription.", + "description": "Description for Get all deleted apps for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DeletedWebAppCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/deletedSites/{deletedSiteId}": { + "get": { + "operationId": "Global_GetDeletedWebApp", + "tags": [ + "Global" + ], + "summary": "Get deleted app for a subscription.", + "description": "Description for Get deleted app for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "deletedSiteId", + "in": "path", + "description": "The numeric ID of the deleted app, e.g. 12345", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DeletedSite" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Deleted Web App": { + "$ref": "./examples/GetDeletedWebApp.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/deletedSites/{deletedSiteId}/snapshots": { + "get": { + "operationId": "Global_GetDeletedWebAppSnapshots", + "tags": [ + "Global" + ], + "summary": "Get all deleted apps for a subscription.", + "description": "Description for Get all deleted apps for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "deletedSiteId", + "in": "path", + "description": "The numeric ID of the deleted app, e.g. 12345", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/Snapshot" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Deleted Web App Snapshots": { + "$ref": "./examples/GetDeletedWebAppSnapshots.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/deploymentLocations": { + "get": { + "operationId": "GetSubscriptionDeploymentLocations", + "summary": "Gets list of available geo regions plus ministamps", + "description": "Description for Gets list of available geo regions plus ministamps", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DeploymentLocations" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions": { + "get": { + "operationId": "ListGeoRegions", + "summary": "Get a list of available geographical regions.", + "description": "Description for Get a list of available geographical regions.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "sku", + "in": "query", + "description": "Name of SKU used to filter the regions.", + "required": false, + "type": "string", + "enum": [ + "Free", + "Shared", + "Basic", + "Standard", + "Premium", + "Dynamic", + "Isolated", + "IsolatedV2", + "PremiumV2", + "PremiumV3", + "PremiumContainer", + "ElasticPremium", + "ElasticIsolated", + "FlexConsumption" + ], + "x-ms-enum": { + "name": "SkuName", + "modelAsString": true, + "values": [ + { + "name": "Free", + "value": "Free" + }, + { + "name": "Shared", + "value": "Shared" + }, + { + "name": "Basic", + "value": "Basic" + }, + { + "name": "Standard", + "value": "Standard" + }, + { + "name": "Premium", + "value": "Premium" + }, + { + "name": "Dynamic", + "value": "Dynamic" + }, + { + "name": "Isolated", + "value": "Isolated" + }, + { + "name": "IsolatedV2", + "value": "IsolatedV2" + }, + { + "name": "PremiumV2", + "value": "PremiumV2" + }, + { + "name": "PremiumV3", + "value": "PremiumV3" + }, + { + "name": "PremiumContainer", + "value": "PremiumContainer" + }, + { + "name": "ElasticPremium", + "value": "ElasticPremium" + }, + { + "name": "ElasticIsolated", + "value": "ElasticIsolated" + }, + { + "name": "FlexConsumption", + "value": "FlexConsumption" + } + ] + } + }, + { + "name": "linuxWorkersEnabled", + "in": "query", + "description": "Specify true if you want to filter to only regions that support Linux workers.", + "required": false, + "type": "boolean" + }, + { + "name": "xenonWorkersEnabled", + "in": "query", + "description": "Specify true if you want to filter to only regions that support Xenon workers.", + "required": false, + "type": "boolean" + }, + { + "name": "linuxDynamicWorkersEnabled", + "in": "query", + "description": "Specify true if you want to filter to only regions that support Linux Consumption Workers.", + "required": false, + "type": "boolean" + }, + { + "name": "customModeWorkersEnabled", + "in": "query", + "description": "Specify true if you want to filter to only regions that support App Service Plans with IsCustomMode set to true.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/GeoRegionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/hostingEnvironments": { + "get": { + "operationId": "AppServiceEnvironments_List", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get all App Service Environments for a subscription.", + "description": "Description for Get all App Service Environments for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all App Service Environments for a subscription.": { + "$ref": "./examples/AppServiceEnvironments_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/kubeEnvironments": { + "get": { + "operationId": "KubeEnvironments_ListBySubscription", + "tags": [ + "KubeEnvironments" + ], + "summary": "Get all Kubernetes Environments for a subscription.", + "description": "Description for Get all Kubernetes Environments for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KubeEnvironmentCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List kube environments by subscription": { + "$ref": "./examples/KubeEnvironments_ListBySubscription.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/listSitesAssignedToHostName": { + "post": { + "operationId": "ListSiteIdentifiersAssignedToHostName", + "summary": "List all apps that are assigned to a hostname.", + "description": "Description for List all apps that are assigned to a hostname.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "nameIdentifier", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/NameIdentifier" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/IdentifierCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/checknameavailability": { + "post": { + "operationId": "RegionalCheckNameAvailability", + "summary": "Check if a resource name is available for DNL sites.", + "description": "Check if a resource name is available for DNL sites.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + }, + { + "name": "request", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/DnlResourceNameAvailabilityRequest" + }, + "x-ms-client-flatten": true + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/DnlResourceNameAvailability" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites": { + "get": { + "operationId": "DeletedWebApps_ListByLocation", + "tags": [ + "DeletedWebApps" + ], + "summary": "Get all deleted apps for a subscription at location", + "description": "Description for Get all deleted apps for a subscription at location", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DeletedWebAppCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Deleted Web App by Location": { + "$ref": "./examples/ListDeletedWebAppsByLocation.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites/{deletedSiteId}": { + "get": { + "operationId": "DeletedWebApps_GetDeletedWebAppByLocation", + "tags": [ + "DeletedWebApps" + ], + "summary": "Get deleted app for a subscription at location.", + "description": "Description for Get deleted app for a subscription at location.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + }, + { + "name": "deletedSiteId", + "in": "path", + "description": "The numeric ID of the deleted app, e.g. 12345", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DeletedSite" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Deleted Web App by Location": { + "$ref": "./examples/GetDeletedWebAppByLocation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/operations/{operationId}": { + "get": { + "operationId": "Global_GetSubscriptionOperationWithAsyncResponse", + "tags": [ + "Global" + ], + "summary": "Gets an operation in a subscription and given region", + "description": "Description for Gets an operation in a subscription and given region", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + }, + { + "name": "operationId", + "in": "path", + "description": "Operation Id", + "required": true, + "type": "string" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Gets an operation in a subscription and given region": { + "$ref": "./examples/GetSubscriptionOperationWithAsyncResponse.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/previewStaticSiteWorkflowFile": { + "post": { + "operationId": "StaticSites_PreviewWorkflow", + "tags": [ + "StaticSites" + ], + "summary": "Generates a preview workflow file for the static site", + "description": "Description for Generates a preview workflow file for the static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + }, + { + "name": "staticSitesWorkflowPreviewRequest", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSitesWorkflowPreviewRequest" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/StaticSitesWorkflowPreview" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Generates a preview workflow file for the static site": { + "$ref": "./examples/GenerateStaticSiteWorkflowPreview.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/usages": { + "get": { + "operationId": "GetUsagesInLocation_list", + "summary": "Lists subscription core usages for all skus used in a location, for a given type of quota.", + "description": "List usages in cores for all skus used by a subscription in a given location, for a specific quota type.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/CsmUsageQuotaCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get usages in location for subscription": { + "$ref": "./examples/GetUsagesInLocation.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/premieraddonoffers": { + "get": { + "operationId": "ListPremierAddOnOffers", + "summary": "List all premier add-on offers.", + "description": "Description for List all premier add-on offers.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/PremierAddOnOfferCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/recommendations": { + "get": { + "operationId": "Recommendations_List", + "tags": [ + "Recommendations" + ], + "summary": "List all recommendations for a subscription.", + "description": "Description for List all recommendations for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "featured", + "in": "query", + "description": "Specify true to return only the most critical recommendations. The default is false, which returns all recommendations.", + "required": false, + "type": "boolean" + }, + { + "name": "$filter", + "in": "query", + "description": "Filter is specified by using OData syntax. Example: $filter=channel eq 'Api' or channel eq 'Notification' and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[PT1H|PT1M|P1D]", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/RecommendationCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/recommendations/{name}/disable": { + "post": { + "operationId": "Recommendations_DisableRecommendationForSubscription", + "tags": [ + "Recommendations" + ], + "summary": "Disables the specified rule so it will not apply to a subscription in the future.", + "description": "Description for Disables the specified rule so it will not apply to a subscription in the future.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "name", + "in": "path", + "description": "Rule name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/recommendations/reset": { + "post": { + "operationId": "Recommendations_ResetAllFilters", + "tags": [ + "Recommendations" + ], + "summary": "Reset all recommendation opt-out settings for a subscription.", + "description": "Description for Reset all recommendation opt-out settings for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful. " + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/resourceHealthMetadata": { + "get": { + "operationId": "ResourceHealthMetadata_List", + "tags": [ + "ResourceHealthMetadata" + ], + "summary": "List all ResourceHealthMetadata for all sites in the subscription.", + "description": "Description for List all ResourceHealthMetadata for all sites in the subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/ResourceHealthMetadataCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List ResourceHealthMetadata for a subscription": { + "$ref": "./examples/ListResourceHealthMetadataBySubscription.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/serverfarms": { + "get": { + "operationId": "AppServicePlans_List", + "tags": [ + "AppServicePlans" + ], + "summary": "Get all App Service plans for a subscription.", + "description": "Description for Get all App Service plans for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "detailed", + "in": "query", + "description": "Specify true to return all App Service plan properties. The default is false, which returns a subset of the properties.\nRetrieval of all properties may increase the API latency.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServicePlanCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Service plans": { + "$ref": "./examples/ListAppServicePlans.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/sites": { + "get": { + "operationId": "WebApps_List", + "tags": [ + "WebApps" + ], + "summary": "Get all apps for a subscription.", + "description": "Description for Get all apps for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Web apps for subscription": { + "$ref": "./examples/ListWebApps.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/skus": { + "get": { + "operationId": "ListSkus", + "summary": "List all SKUs.", + "description": "Description for List all SKUs.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/SkuInfos" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/staticSites": { + "get": { + "operationId": "StaticSites_List", + "tags": [ + "StaticSites" + ], + "summary": "Get all Static Sites for a subscription.", + "description": "Description for Get all Static Sites for a subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all static sites in a subscription": { + "$ref": "./examples/GetAllStaticSites.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Web/verifyHostingEnvironmentVnet": { + "post": { + "operationId": "VerifyHostingEnvironmentVnet", + "summary": "Verifies if this VNET is compatible with an App Service Environment by analyzing the Network Security Group rules.", + "description": "Description for Verifies if this VNET is compatible with an App Service Environment by analyzing the Network Security Group rules.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "parameters", + "in": "body", + "description": "The request body", + "required": true, + "schema": { + "$ref": "#/definitions/VnetParameters" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/VnetValidationFailureDetails" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "VerifyHostingEnvironmentVnet": { + "$ref": "./examples/VerifyHostingEnvironmentVnet.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/moveResources": { + "post": { + "operationId": "Move", + "summary": "Move resources between resource groups.", + "description": "Description for Move resources between resource groups.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "moveResourceEnvelope", + "in": "body", + "description": "Object that represents the resource to move.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmMoveResourceEnvelope" + } + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/aigateways": { + "get": { + "operationId": "AiGateways_ListByResourceGroup", + "tags": [ + "AiGateways" + ], + "description": "List AiGateway resources by resource group", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/Azure.Core.TopQueryParameter" + }, + { + "$ref": "#/parameters/Azure.Core.SkipQueryParameter" + }, + { + "$ref": "#/parameters/Azure.Core.MaxPageSizeQueryParameter" + }, + { + "$ref": "#/parameters/Azure.Core.FilterQueryParameter" + }, + { + "$ref": "#/parameters/Azure.Core.SelectQueryParameter" + }, + { + "$ref": "#/parameters/Azure.Core.ExpandQueryParameter" + }, + { + "$ref": "#/parameters/Azure.Core.OrderByQueryParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AiGatewayListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "ListAiGatewaysByResourceGroup": { + "$ref": "./examples/AIGateways_ListByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/aigateways/{name}": { + "get": { + "operationId": "AiGateways_Get", + "tags": [ + "AiGateways" + ], + "description": "Get a AiGateway", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the AI gateway", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9_.()-]{0,79}$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AiGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "GetAiGateway": { + "$ref": "./examples/AIGateways_Get.json" + } + } + }, + "put": { + "operationId": "AiGateways_CreateOrUpdate", + "tags": [ + "AiGateways" + ], + "description": "Create a AiGateway", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the AI gateway", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9_.()-]{0,79}$" + }, + { + "name": "resource", + "in": "body", + "description": "Resource create parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/AiGateway" + } + } + ], + "responses": { + "200": { + "description": "Resource 'AiGateway' update operation succeeded", + "schema": { + "$ref": "#/definitions/AiGateway" + } + }, + "201": { + "description": "Resource 'AiGateway' create operation succeeded", + "schema": { + "$ref": "#/definitions/AiGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "CreateOrUpdateAiGateway": { + "$ref": "./examples/AIGateways_CreateOrUpdate.json" + } + } + }, + "patch": { + "operationId": "AiGateways_Patch", + "tags": [ + "AiGateways" + ], + "description": "Update a AiGateway", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the AI gateway", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9_.()-]{0,79}$" + }, + { + "name": "properties", + "in": "body", + "description": "The resource properties to be updated.", + "required": true, + "schema": { + "$ref": "#/definitions/AiGatewayTagsUpdate" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AiGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "PatchAiGateway": { + "$ref": "./examples/AIGateways_Patch.json" + } + } + }, + "delete": { + "operationId": "AiGateways_Delete", + "tags": [ + "AiGateways" + ], + "description": "Delete a AiGateway", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the AI gateway", + "required": true, + "type": "string", + "pattern": "[a-zA-Z0-9_.()-]{0,79}$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "DeleteAiGateway": { + "$ref": "./examples/AIGateways_Delete.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates": { + "get": { + "operationId": "Certificates_ListByResourceGroup", + "tags": [ + "Certificates" + ], + "summary": "Get all certificates in a resource group.", + "description": "Description for Get all certificates in a resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CertificateCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Certificates by resource group": { + "$ref": "./examples/ListCertificatesByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/certificates/{name}": { + "get": { + "operationId": "Certificates_Get", + "tags": [ + "Certificates" + ], + "summary": "Get a certificate.", + "description": "Description for Get a certificate.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Certificate": { + "$ref": "./examples/GetCertificate.json" + } + } + }, + "put": { + "operationId": "Certificates_CreateOrUpdate", + "tags": [ + "Certificates" + ], + "summary": "Create or update a certificate.", + "description": "Description for Create or update a certificate.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string" + }, + { + "name": "certificateEnvelope", + "in": "body", + "description": "Details of certificate, if it exists already.", + "required": true, + "schema": { + "$ref": "#/definitions/Certificate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Certificate' update operation succeeded", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create Or Update Certificate": { + "$ref": "./examples/CreateOrUpdateCertificate.json" + } + } + }, + "patch": { + "operationId": "Certificates_Update", + "tags": [ + "Certificates" + ], + "summary": "Create or update a certificate.", + "description": "Description for Create or update a certificate.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string" + }, + { + "name": "certificateEnvelope", + "in": "body", + "description": "Details of certificate, if it exists already.", + "required": true, + "schema": { + "$ref": "#/definitions/CertificatePatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Patch Certificate": { + "$ref": "./examples/PatchCertificate.json" + } + } + }, + "delete": { + "operationId": "Certificates_Delete", + "tags": [ + "Certificates" + ], + "summary": "Delete a certificate.", + "description": "Description for Delete a certificate.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete Certificate": { + "$ref": "./examples/DeleteCertificate.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments": { + "get": { + "operationId": "AppServiceEnvironments_ListByResourceGroup", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get all App Service Environments in a resource group.", + "description": "Description for Get all App Service Environments in a resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all App Service Environments in a resource group.": { + "$ref": "./examples/AppServiceEnvironments_ListByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}": { + "get": { + "operationId": "AppServiceEnvironments_Get", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get the properties of an App Service Environment.", + "description": "Description for Get the properties of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the properties of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_Get.json" + } + } + }, + "put": { + "operationId": "AppServiceEnvironments_CreateOrUpdate", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Create or update an App Service Environment.", + "description": "Description for Create or update an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "hostingEnvironmentEnvelope", + "in": "body", + "description": "Configuration details of the App Service Environment.", + "required": true, + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'AppServiceEnvironmentResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + } + }, + "201": { + "description": "Resource 'AppServiceEnvironmentResource' create operation succeeded", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_CreateOrUpdate.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/AppServiceEnvironmentResource" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "AppServiceEnvironments_Update", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Create or update an App Service Environment.", + "description": "Description for Create or update an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "hostingEnvironmentEnvelope", + "in": "body", + "description": "Configuration details of the App Service Environment.", + "required": true, + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentPatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + } + }, + "201": { + "description": "Resource 'AppServiceEnvironmentResource' create operation succeeded", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_Update.json" + } + } + }, + "delete": { + "operationId": "AppServiceEnvironments_Delete", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Delete an App Service Environment.", + "description": "Description for Delete an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "forceDelete", + "in": "query", + "description": "Specify true to force the deletion even if the App Service Environment contains resources. The default is false.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_Delete.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/capacities/compute": { + "get": { + "operationId": "AppServiceEnvironments_ListCapacities", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get the used, available, and total worker capacity an App Service Environment.", + "description": "Description for Get the used, available, and total worker capacity an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StampCapacityCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the used, available, and total worker capacity an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListCapacities.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/capacities/virtualip": { + "get": { + "operationId": "AppServiceEnvironments_GetVipInfo", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get IP addresses assigned to an App Service Environment.", + "description": "Description for Get IP addresses assigned to an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AddressResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get IP addresses assigned to an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_GetVipInfo.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/changeVirtualNetwork": { + "post": { + "operationId": "AppServiceEnvironments_ChangeVnet", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Move an App Service Environment to a different VNET.", + "description": "Description for Move an App Service Environment to a different VNET.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "vnetInfo", + "in": "body", + "description": "Details for the new virtual network.", + "required": true, + "schema": { + "$ref": "#/definitions/VirtualNetworkProfile" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Move an App Service Environment to a different VNET.": { + "$ref": "./examples/AppServiceEnvironments_ChangeVnet.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/WebAppCollection" + }, + "x-ms-long-running-operation": true, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/configurations/customdnssuffix": { + "get": { + "operationId": "AppServiceEnvironments_GetAseCustomDnsSuffixConfiguration", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get Custom Dns Suffix configuration of an App Service Environment", + "description": "Get Custom Dns Suffix configuration of an App Service Environment", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CustomDnsSuffixConfiguration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get ASE custom DNS suffix configuration": { + "$ref": "./examples/GetAseCustomDnsSuffixConfiguration.json" + } + } + }, + "put": { + "operationId": "AppServiceEnvironments_UpdateAseCustomDnsSuffixConfiguration", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Update Custom Dns Suffix configuration of an App Service Environment", + "description": "Update Custom Dns Suffix configuration of an App Service Environment", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "customDnsSuffixConfiguration", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/CustomDnsSuffixConfiguration" + } + } + ], + "responses": { + "200": { + "description": "Resource 'CustomDnsSuffixConfiguration' update operation succeeded", + "schema": { + "$ref": "#/definitions/CustomDnsSuffixConfiguration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update ASE custom DNS suffix configuration": { + "$ref": "./examples/UpdateAseCustomDnsSuffixConfiguration.json" + } + } + }, + "delete": { + "operationId": "AppServiceEnvironments_DeleteAseCustomDnsSuffixConfiguration", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Delete Custom Dns Suffix configuration of an App Service Environment", + "description": "Delete Custom Dns Suffix configuration of an App Service Environment", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful. ", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete ASE custom DNS suffix configuration": { + "$ref": "./examples/DeleteAseCustomDnsSuffixConfiguration.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/configurations/networking": { + "get": { + "operationId": "AppServiceEnvironments_GetAseV3NetworkingConfiguration", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get networking configuration of an App Service Environment", + "description": "Description for Get networking configuration of an App Service Environment", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AseV3NetworkingConfiguration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get networking configuration of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json" + } + } + }, + "put": { + "operationId": "AppServiceEnvironments_UpdateAseNetworkingConfiguration", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Update networking configuration of an App Service Environment", + "description": "Description for Update networking configuration of an App Service Environment", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "aseNetworkingConfiguration", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/AseV3NetworkingConfiguration" + } + } + ], + "responses": { + "200": { + "description": "Resource 'AseV3NetworkingConfiguration' update operation succeeded", + "schema": { + "$ref": "#/definitions/AseV3NetworkingConfiguration" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update networking configuration of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/detectors": { + "get": { + "operationId": "Diagnostics_ListHostingEnvironmentDetectorResponses", + "tags": [ + "Diagnostics" + ], + "summary": "List Hosting Environment Detector Responses", + "description": "Description for List Hosting Environment Detector Responses", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "App Service Environment Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorResponseCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Service Environment Detector Responses": { + "$ref": "./examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/detectors/{detectorName}": { + "get": { + "operationId": "Diagnostics_GetHostingEnvironmentDetectorResponse", + "tags": [ + "Diagnostics" + ], + "summary": "Get Hosting Environment Detector Response", + "description": "Description for Get Hosting Environment Detector Response", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "App Service Environment Name", + "required": true, + "type": "string" + }, + { + "name": "detectorName", + "in": "path", + "description": "Detector Resource Name", + "required": true, + "type": "string" + }, + { + "name": "startTime", + "in": "query", + "description": "Start Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "endTime", + "in": "query", + "description": "End Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "timeGrain", + "in": "query", + "description": "Time Grain", + "required": false, + "type": "string", + "pattern": "PT[1-9][0-9]+[SMH]" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Service Environment Detector Responses": { + "$ref": "./examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/diagnostics": { + "get": { + "operationId": "AppServiceEnvironments_ListDiagnostics", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get diagnostic information for an App Service Environment.", + "description": "Description for Get diagnostic information for an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/HostingEnvironmentDiagnostics" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get diagnostic information for an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListDiagnostics.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/inboundNetworkDependenciesEndpoints": { + "get": { + "operationId": "AppServiceEnvironments_GetInboundNetworkDependenciesEndpoints", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get the network endpoints of all inbound dependencies of an App Service Environment.", + "description": "Description for Get the network endpoints of all inbound dependencies of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/InboundEnvironmentEndpointCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the network endpoints of all inbound dependencies of an App Service Environment.": { + "$ref": "./examples/GetInboundNetworkDependenciesEndpoints.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/multiRolePools": { + "get": { + "operationId": "AppServiceEnvironments_ListMultiRolePools", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get all multi-role pools.", + "description": "Description for Get all multi-role pools.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkerPoolCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all multi-role pools.": { + "$ref": "./examples/AppServiceEnvironments_ListMultiRolePools.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/multiRolePools/default": { + "get": { + "operationId": "AppServiceEnvironments_GetMultiRolePool", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get properties of a multi-role pool.", + "description": "Description for Get properties of a multi-role pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get properties of a multi-role pool.": { + "$ref": "./examples/AppServiceEnvironments_GetMultiRolePool.json" + } + } + }, + "put": { + "operationId": "AppServiceEnvironments_CreateOrUpdateMultiRolePool", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Create or update a multi-role pool.", + "description": "Description for Create or update a multi-role pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "multiRolePoolEnvelope", + "in": "body", + "description": "Properties of the multi-role pool.", + "required": true, + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'WorkerPoolResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update a multi-role pool.": { + "$ref": "./examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/WorkerPoolResource" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "AppServiceEnvironments_UpdateMultiRolePool", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Create or update a multi-role pool.", + "description": "Description for Create or update a multi-role pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "multiRolePoolEnvelope", + "in": "body", + "description": "Properties of the multi-role pool.", + "required": true, + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update a multi-role pool.": { + "$ref": "./examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/multiRolePools/default/metricdefinitions": { + "get": { + "operationId": "AppServiceEnvironments_ListMultiRoleMetricDefinitions", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get metric definitions for a multi-role pool of an App Service Environment.", + "description": "Description for Get metric definitions for a multi-role pool of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceMetricDefinitionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get metric definitions for a multi-role pool of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/multiRolePools/default/skus": { + "get": { + "operationId": "AppServiceEnvironments_ListMultiRolePoolSkus", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get available SKUs for scaling a multi-role pool.", + "description": "Description for Get available SKUs for scaling a multi-role pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SkuInfoCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get available SKUs for scaling a multi-role pool.": { + "$ref": "./examples/AppServiceEnvironments_ListMultiRolePoolSkus.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/multiRolePools/default/usages": { + "get": { + "operationId": "AppServiceEnvironments_ListMultiRoleUsages", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get usage metrics for a multi-role pool of an App Service Environment.", + "description": "Description for Get usage metrics for a multi-role pool of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/UsageCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get usage metrics for a multi-role pool of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListMultiRoleUsages.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/operations": { + "get": { + "operationId": "AppServiceEnvironments_ListOperations", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "List all currently running operations on the App Service Environment.", + "description": "Description for List all currently running operations on the App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/Operation" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List all currently running operations on the App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListOperations.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/outboundNetworkDependenciesEndpoints": { + "get": { + "operationId": "AppServiceEnvironments_GetOutboundNetworkDependenciesEndpoints", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get the network endpoints of all outbound dependencies of an App Service Environment.", + "description": "Description for Get the network endpoints of all outbound dependencies of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/OutboundEnvironmentEndpointCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the network endpoints of all outbound dependencies of an App Service Environment.": { + "$ref": "./examples/GetOutboundNetworkDependenciesEndpoints.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/privateEndpointConnections": { + "get": { + "operationId": "AppServiceEnvironments_GetPrivateEndpointConnectionList", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Gets the list of private endpoints associated with a hosting environment", + "description": "Description for Gets the list of private endpoints associated with a hosting environment", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateEndpointConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Gets the list of private endpoints associated with a hosting environment.": { + "$ref": "./examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/privateEndpointConnections/{privateEndpointConnectionName}": { + "get": { + "operationId": "AppServiceEnvironments_GetPrivateEndpointConnection", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Gets a private endpoint connection", + "description": "Description for Gets a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Gets a private endpoint connection.": { + "$ref": "./examples/AppServiceEnvironments_GetPrivateEndpointConnection.json" + } + } + }, + "put": { + "operationId": "AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Approves or rejects a private endpoint connection", + "description": "Description for Approves or rejects a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointWrapper", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'RemotePrivateEndpointConnectionARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Approves or rejects a private endpoint connection.": { + "$ref": "./examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "AppServiceEnvironments_DeletePrivateEndpointConnection", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Deletes a private endpoint connection", + "description": "Description for Deletes a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": {}, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful. ", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Deletes a private endpoint connection.": { + "$ref": "./examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/privateLinkResources": { + "get": { + "operationId": "AppServiceEnvironments_GetPrivateLinkResources", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Gets the private link resources", + "description": "Description for Gets the private link resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateLinkResourcesWrapper" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Gets the private link resources.": { + "$ref": "./examples/AppServiceEnvironments_GetPrivateLinkResources.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/reboot": { + "post": { + "operationId": "AppServiceEnvironments_Reboot", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Reboot all machines in an App Service Environment.", + "description": "Description for Reboot all machines in an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Reboot all machines in an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_Reboot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{hostingEnvironmentName}/recommendationHistory": { + "get": { + "operationId": "Recommendations_ListHistoryForHostingEnvironment", + "tags": [ + "Recommendations" + ], + "summary": "Get past recommendations for an app, optionally specified by the time range.", + "description": "Description for Get past recommendations for an app, optionally specified by the time range.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostingEnvironmentName", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "expiredOnly", + "in": "query", + "description": "Specify false to return all recommendations. The default is true, which returns only expired recommendations.", + "required": false, + "type": "boolean" + }, + { + "name": "$filter", + "in": "query", + "description": "Filter is specified by using OData syntax. Example: $filter=channel eq 'Api' or channel eq 'Notification' and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[PT1H|PT1M|P1D]", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RecommendationCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{hostingEnvironmentName}/recommendations": { + "get": { + "operationId": "Recommendations_ListRecommendedRulesForHostingEnvironment", + "tags": [ + "Recommendations" + ], + "summary": "Get all recommendations for a hosting environment.", + "description": "Description for Get all recommendations for a hosting environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostingEnvironmentName", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "featured", + "in": "query", + "description": "Specify true to return only the most critical recommendations. The default is false, which returns all recommendations.", + "required": false, + "type": "boolean" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only channels specified in the filter. Filter is specified by using OData syntax. Example: $filter=channel eq 'Api' or channel eq 'Notification'", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RecommendationCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{hostingEnvironmentName}/recommendations/{name}": { + "get": { + "operationId": "Recommendations_GetRuleDetailsByHostingEnvironment", + "tags": [ + "Recommendations" + ], + "summary": "Get a recommendation rule for an app.", + "description": "Description for Get a recommendation rule for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostingEnvironmentName", + "in": "path", + "description": "Name of the hosting environment.", + "required": true, + "type": "string" + }, + { + "name": "name", + "in": "path", + "description": "Name of the recommendation.", + "required": true, + "type": "string" + }, + { + "name": "updateSeen", + "in": "query", + "description": "Specify true to update the last-seen timestamp of the recommendation object.", + "required": false, + "type": "boolean" + }, + { + "name": "recommendationId", + "in": "query", + "description": "The GUID of the recommendation object if you query an expired one. You don't need to specify it to query an active entry.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RecommendationRule" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{hostingEnvironmentName}/recommendations/{name}/disable": { + "post": { + "operationId": "Recommendations_DisableRecommendationForHostingEnvironment", + "tags": [ + "Recommendations" + ], + "summary": "Disables the specific rule for a web site permanently.", + "description": "Description for Disables the specific rule for a web site permanently.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostingEnvironmentName", + "in": "path", + "description": "Name of the hosting environment.", + "required": true, + "type": "string" + }, + { + "name": "name", + "in": "path", + "description": "Name of the recommendation.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "query", + "description": "Site name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{hostingEnvironmentName}/recommendations/disable": { + "post": { + "operationId": "Recommendations_DisableAllForHostingEnvironment", + "tags": [ + "Recommendations" + ], + "summary": "Disable all recommendations for an app.", + "description": "Description for Disable all recommendations for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostingEnvironmentName", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "query", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{hostingEnvironmentName}/recommendations/reset": { + "post": { + "operationId": "Recommendations_ResetAllFiltersForHostingEnvironment", + "tags": [ + "Recommendations" + ], + "summary": "Reset all recommendation opt-out settings for an app.", + "description": "Description for Reset all recommendation opt-out settings for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "hostingEnvironmentName", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "query", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/resume": { + "post": { + "operationId": "AppServiceEnvironments_Resume", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Resume an App Service Environment.", + "description": "Description for Resume an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Resume an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_Resume.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/WebAppCollection" + }, + "x-ms-long-running-operation": true, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/serverfarms": { + "get": { + "operationId": "AppServiceEnvironments_ListAppServicePlans", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get all App Service plans in an App Service Environment.", + "description": "Description for Get all App Service plans in an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServicePlanCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all App Service plans in an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListAppServicePlans.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/sites": { + "get": { + "operationId": "AppServiceEnvironments_ListWebApps", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get all apps in an App Service Environment.", + "description": "Description for Get all apps in an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "propertiesToInclude", + "in": "query", + "description": "Comma separated list of app properties to include.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all apps in an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListWebApps.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/suspend": { + "post": { + "operationId": "AppServiceEnvironments_Suspend", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Suspend an App Service Environment.", + "description": "Description for Suspend an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Suspend an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_Suspend.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/WebAppCollection" + }, + "x-ms-long-running-operation": true, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/testUpgradeAvailableNotification": { + "post": { + "operationId": "AppServiceEnvironments_TestUpgradeAvailableNotification", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Send a test notification that an upgrade is available for this App Service Environment.", + "description": "Send a test notification that an upgrade is available for this App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Send a test notification that an upgrade is available for this App Service Environment": { + "$ref": "./examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/upgrade": { + "post": { + "operationId": "AppServiceEnvironments_Upgrade", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Initiate an upgrade of an App Service Environment if one is available.", + "description": "Description for Initiate an upgrade of an App Service Environment if one is available.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Initiate an upgrade on an App Service Environment": { + "$ref": "./examples/AppServiceEnvironments_Upgrade.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/usages": { + "get": { + "operationId": "AppServiceEnvironments_ListUsages", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get global usage metrics of an App Service Environment.", + "description": "Description for Get global usage metrics of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only usages/metrics specified in the filter. Filter conforms to odata syntax. Example: $filter=(name.value eq 'Metric1' or name.value eq 'Metric2') and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[Hour|Minute|Day]'.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmUsageQuotaCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get global usage metrics of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListUsages.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/workerPools": { + "get": { + "operationId": "AppServiceEnvironments_ListWorkerPools", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get all worker pools of an App Service Environment.", + "description": "Description for Get all worker pools of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkerPoolCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all worker pools of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListWorkerPools.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/workerPools/{workerPoolName}": { + "get": { + "operationId": "AppServiceEnvironments_GetWorkerPool", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get properties of a worker pool.", + "description": "Description for Get properties of a worker pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolName", + "in": "path", + "description": "Name of the worker pool.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get properties of a worker pool.": { + "$ref": "./examples/AppServiceEnvironments_GetWorkerPool.json" + } + } + }, + "put": { + "operationId": "AppServiceEnvironments_CreateOrUpdateWorkerPool", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Create or update a worker pool.", + "description": "Description for Create or update a worker pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolName", + "in": "path", + "description": "Name of the worker pool.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolEnvelope", + "in": "body", + "description": "Properties of the worker pool.", + "required": true, + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'WorkerPoolResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get properties of a worker pool.": { + "$ref": "./examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/WorkerPoolResource" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "AppServiceEnvironments_UpdateWorkerPool", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Create or update a worker pool.", + "description": "Description for Create or update a worker pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolName", + "in": "path", + "description": "Name of the worker pool.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolEnvelope", + "in": "body", + "description": "Properties of the worker pool.", + "required": true, + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get properties of a worker pool.": { + "$ref": "./examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/workerPools/{workerPoolName}/metricdefinitions": { + "get": { + "operationId": "AppServiceEnvironments_ListWebWorkerMetricDefinitions", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get metric definitions for a worker pool of an App Service Environment.", + "description": "Description for Get metric definitions for a worker pool of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolName", + "in": "path", + "description": "Name of the worker pool.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceMetricDefinitionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get metric definitions for a worker pool of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/workerPools/{workerPoolName}/skus": { + "get": { + "operationId": "AppServiceEnvironments_ListWorkerPoolSkus", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get available SKUs for scaling a worker pool.", + "description": "Description for Get available SKUs for scaling a worker pool.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolName", + "in": "path", + "description": "Name of the worker pool.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SkuInfoCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get available SKUs for scaling a worker pool.": { + "$ref": "./examples/AppServiceEnvironments_ListWorkerPoolSkus.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/workerPools/{workerPoolName}/usages": { + "get": { + "operationId": "AppServiceEnvironments_ListWebWorkerUsages", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get usage metrics for a worker pool of an App Service Environment.", + "description": "Description for Get usage metrics for a worker pool of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolName", + "in": "path", + "description": "Name of the worker pool.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/UsageCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get usage metrics for a worker pool of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListWebWorkerUsages.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/kubeEnvironments": { + "get": { + "operationId": "KubeEnvironments_ListByResourceGroup", + "tags": [ + "KubeEnvironments" + ], + "summary": "Get all the Kubernetes Environments in a resource group.", + "description": "Description for Get all the Kubernetes Environments in a resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KubeEnvironmentCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List kube environments by resource group": { + "$ref": "./examples/KubeEnvironments_ListByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/kubeEnvironments/{name}": { + "get": { + "operationId": "KubeEnvironments_Get", + "tags": [ + "KubeEnvironments" + ], + "summary": "Get the properties of a Kubernetes Environment.", + "description": "Description for Get the properties of a Kubernetes Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the Kubernetes Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KubeEnvironment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get kube environments by name": { + "$ref": "./examples/KubeEnvironments_Get.json" + } + } + }, + "put": { + "operationId": "KubeEnvironments_CreateOrUpdate", + "tags": [ + "KubeEnvironments" + ], + "summary": "Creates or updates a Kubernetes Environment.", + "description": "Description for Creates or updates a Kubernetes Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the Kubernetes Environment.", + "required": true, + "type": "string" + }, + { + "name": "kubeEnvironmentEnvelope", + "in": "body", + "description": "Configuration details of the Kubernetes Environment.", + "required": true, + "schema": { + "$ref": "#/definitions/KubeEnvironment" + } + } + ], + "responses": { + "200": { + "description": "Resource 'KubeEnvironment' update operation succeeded", + "schema": { + "$ref": "#/definitions/KubeEnvironment" + } + }, + "201": { + "description": "Resource 'KubeEnvironment' create operation succeeded", + "schema": { + "$ref": "#/definitions/KubeEnvironment" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create kube environments": { + "$ref": "./examples/KubeEnvironments_CreateOrUpdate.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/KubeEnvironment" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "KubeEnvironments_Update", + "tags": [ + "KubeEnvironments" + ], + "summary": "Creates or updates a Kubernetes Environment.", + "description": "Description for Creates or updates a Kubernetes Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the Kubernetes Environment.", + "required": true, + "type": "string" + }, + { + "name": "kubeEnvironmentEnvelope", + "in": "body", + "description": "Configuration details of the Kubernetes Environment.", + "required": true, + "schema": { + "$ref": "#/definitions/KubeEnvironmentPatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KubeEnvironment" + } + }, + "201": { + "description": "Resource 'KubeEnvironment' create operation succeeded", + "schema": { + "$ref": "#/definitions/KubeEnvironment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update kube environments": { + "$ref": "./examples/KubeEnvironments_Update.json" + } + } + }, + "delete": { + "operationId": "KubeEnvironments_Delete", + "tags": [ + "KubeEnvironments" + ], + "summary": "Delete a Kubernetes Environment.", + "description": "Description for Delete a Kubernetes Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the Kubernetes Environment.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete kube environment by name": { + "$ref": "./examples/KubeEnvironments_Delete.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/resourceHealthMetadata": { + "get": { + "operationId": "ResourceHealthMetadata_ListByResourceGroup", + "tags": [ + "ResourceHealthMetadata" + ], + "summary": "List all ResourceHealthMetadata for all sites in the resource group in the subscription.", + "description": "Description for List all ResourceHealthMetadata for all sites in the resource group in the subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceHealthMetadataCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List ResourceHealthMetadata for a resource group": { + "$ref": "./examples/ListResourceHealthMetadataByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms": { + "get": { + "operationId": "AppServicePlans_ListByResourceGroup", + "tags": [ + "AppServicePlans" + ], + "summary": "Get all App Service plans in a resource group.", + "description": "Description for Get all App Service plans in a resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServicePlanCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Service plans by resource group": { + "$ref": "./examples/ListAppServicePlansByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}": { + "get": { + "operationId": "AppServicePlans_Get", + "tags": [ + "AppServicePlans" + ], + "summary": "Get an App Service plan.", + "description": "Description for Get an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServicePlan" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Service plan": { + "$ref": "./examples/GetAppServicePlan.json" + } + } + }, + "put": { + "operationId": "AppServicePlans_CreateOrUpdate", + "tags": [ + "AppServicePlans" + ], + "summary": "Creates or updates an App Service Plan.", + "description": "Description for Creates or updates an App Service Plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "appServicePlan", + "in": "body", + "description": "Details of the App Service plan.", + "required": true, + "schema": { + "$ref": "#/definitions/AppServicePlan" + } + } + ], + "responses": { + "200": { + "description": "Resource 'AppServicePlan' update operation succeeded", + "schema": { + "$ref": "#/definitions/AppServicePlan" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/AppServicePlan" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create Or Update App Service plan": { + "$ref": "./examples/CreateOrUpdateAppServicePlan.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/AppServicePlan" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "AppServicePlans_Update", + "tags": [ + "AppServicePlans" + ], + "summary": "Creates or updates an App Service Plan.", + "description": "Description for Creates or updates an App Service Plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "appServicePlan", + "in": "body", + "description": "Details of the App Service plan.", + "required": true, + "schema": { + "$ref": "#/definitions/AppServicePlanPatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AppServicePlan" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/AppServicePlan" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Patch Service plan": { + "$ref": "./examples/PatchAppServicePlan.json" + } + } + }, + "delete": { + "operationId": "AppServicePlans_Delete", + "tags": [ + "AppServicePlans" + ], + "summary": "Delete an App Service plan.", + "description": "Description for Delete an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete App Service plan": { + "$ref": "./examples/DeleteAppServicePlan.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/capabilities": { + "get": { + "operationId": "AppServicePlans_ListCapabilities", + "tags": [ + "AppServicePlans" + ], + "summary": "List all capabilities of an App Service plan.", + "description": "Description for List all capabilities of an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/Capability" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/getrdppassword": { + "post": { + "operationId": "AppServicePlans_GetServerFarmRdpPassword", + "tags": [ + "AppServicePlans" + ], + "summary": "Get the RDP password for an IsCustomMode ServerFarm.", + "description": "Description for Get the RDP password for an IsCustomMode ServerFarm.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ServerFarmRdpDetails" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/hybridConnectionNamespaces/{namespaceName}/relays/{relayName}": { + "get": { + "operationId": "AppServicePlans_GetHybridConnection", + "tags": [ + "AppServicePlans" + ], + "summary": "Retrieve a Hybrid Connection in use in an App Service plan.", + "description": "Description for Retrieve a Hybrid Connection in use in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "Name of the Service Bus namespace.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "Name of the Service Bus relay.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "AppServicePlans_DeleteHybridConnection", + "tags": [ + "AppServicePlans" + ], + "summary": "Delete a Hybrid Connection in use in an App Service plan.", + "description": "Description for Delete a Hybrid Connection in use in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "Name of the Service Bus namespace.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "Name of the Service Bus relay.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/hybridConnectionNamespaces/{namespaceName}/relays/{relayName}/listKeys": { + "post": { + "operationId": "AppServicePlans_ListHybridConnectionKeys", + "tags": [ + "AppServicePlans" + ], + "summary": "Get the send key name and value of a Hybrid Connection.", + "description": "Description for Get the send key name and value of a Hybrid Connection.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "Name of the Service Bus namespace.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "Name of the Service Bus relay.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnectionKey" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/hybridConnectionNamespaces/{namespaceName}/relays/{relayName}/sites": { + "get": { + "operationId": "AppServicePlans_ListWebAppsByHybridConnection", + "tags": [ + "AppServicePlans" + ], + "summary": "Get all apps that use a Hybrid Connection in an App Service Plan.", + "description": "Description for Get all apps that use a Hybrid Connection in an App Service Plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "Name of the Service Bus namespace.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "Name of the Service Bus relay.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/hybridConnectionPlanLimits/limit": { + "get": { + "operationId": "AppServicePlans_GetHybridConnectionPlanLimit", + "tags": [ + "AppServicePlans" + ], + "summary": "Get the maximum number of Hybrid Connections allowed in an App Service plan.", + "description": "Description for Get the maximum number of Hybrid Connections allowed in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnectionLimits" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/hybridConnectionRelays": { + "get": { + "operationId": "AppServicePlans_ListHybridConnections", + "tags": [ + "AppServicePlans" + ], + "summary": "Retrieve all Hybrid Connections in use in an App Service plan.", + "description": "Description for Retrieve all Hybrid Connections in use in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/listinstances": { + "post": { + "operationId": "AppServicePlans_GetServerFarmInstanceDetails", + "tags": [ + "AppServicePlans" + ], + "summary": "Get the instance details for an app service plan.", + "description": "Description for Get the instance details for an app service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ServerFarmInstanceDetails" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/restartSites": { + "post": { + "operationId": "AppServicePlans_RestartWebApps", + "tags": [ + "AppServicePlans" + ], + "summary": "Restart all apps in an App Service plan.", + "description": "Description for Restart all apps in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "softRestart", + "in": "query", + "description": "Specify true to perform a soft restart, applies the configuration settings and restarts the apps if necessary. The default is false, which always restarts and reprovisions the apps", + "required": false, + "type": "boolean" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/silos": { + "get": { + "operationId": "ServerFarmSilos_ListServerFarmSilos", + "tags": [ + "AppServicePlans" + ], + "summary": "Get all silos for an App Service plan.", + "description": "Get all silos for an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ServerFarmSiloCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Service plan silos": { + "$ref": "./examples/ListServerFarmSilos.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/silos/{siloName}": { + "get": { + "operationId": "ServerFarmSilos_GetServerFarmSilo", + "tags": [ + "AppServicePlans" + ], + "summary": "Get a specific silo for an App Service plan.", + "description": "Get a specific silo for an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "siloName", + "in": "path", + "description": "Name of the silo.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ServerFarmSilo" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Service plan silo": { + "$ref": "./examples/GetServerFarmSilo.json" + } + } + }, + "put": { + "operationId": "ServerFarmSilos_CreateOrUpdateServerFarmSilo", + "tags": [ + "AppServicePlans" + ], + "summary": "Create or update an App Service plan silo.", + "description": "Create or update an App Service plan silo.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "siloName", + "in": "path", + "description": "Name of the silo.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + }, + { + "name": "resource", + "in": "body", + "description": "Details of the silo.", + "required": true, + "schema": { + "$ref": "#/definitions/ServerFarmSilo" + } + } + ], + "responses": { + "200": { + "description": "Resource 'ServerFarmSilo' update operation succeeded", + "schema": { + "$ref": "#/definitions/ServerFarmSilo" + } + }, + "201": { + "description": "Resource 'ServerFarmSilo' create operation succeeded", + "schema": { + "$ref": "#/definitions/ServerFarmSilo" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update App Service plan silo": { + "$ref": "./examples/CreateOrUpdateServerFarmSilo.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation", + "final-state-schema": "#/definitions/ServerFarmSilo" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "ServerFarmSilos_DeleteServerFarmSilo", + "tags": [ + "AppServicePlans" + ], + "summary": "Delete an App Service plan silo.", + "description": "Delete an App Service plan silo.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "siloName", + "in": "path", + "description": "Name of the silo.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete App Service plan silo": { + "$ref": "./examples/DeleteServerFarmSilo.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/sites": { + "get": { + "operationId": "AppServicePlans_ListWebApps", + "tags": [ + "AppServicePlans" + ], + "summary": "Get all apps associated with an App Service plan.", + "description": "Description for Get all apps associated with an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "$skipToken", + "in": "query", + "description": "Skip to a web app in the list of webapps associated with app service plan. If specified, the resulting list will contain web apps starting from (including) the skipToken. Otherwise, the resulting list contains web apps from the start of the list", + "required": false, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "Supported filter: $filter=state eq running. Returns only web apps that are currently running", + "required": false, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "description": "List page size. If specified, results are paged.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/skus": { + "get": { + "operationId": "AppServicePlans_GetServerFarmSkus", + "tags": [ + "AppServicePlans" + ], + "summary": "Gets all selectable SKUs for a given App Service Plan", + "description": "Description for Gets all selectable SKUs for a given App Service Plan", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/usages": { + "get": { + "operationId": "AppServicePlans_ListUsages", + "tags": [ + "AppServicePlans" + ], + "summary": "Gets server farm usage information", + "description": "Description for Gets server farm usage information", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only usages/metrics specified in the filter. Filter conforms to odata syntax. Example: $filter=(name.value eq 'Metric1' or name.value eq 'Metric2').", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmUsageQuotaCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/virtualNetworkConnections": { + "get": { + "operationId": "AppServicePlans_ListVnets", + "tags": [ + "AppServicePlans" + ], + "summary": "Get all Virtual Networks associated with an App Service plan.", + "description": "Description for Get all Virtual Networks associated with an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VnetInfoResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/virtualNetworkConnections/{vnetName}": { + "get": { + "operationId": "AppServicePlans_GetVnetFromServerFarm", + "tags": [ + "AppServicePlans" + ], + "summary": "Get a Virtual Network associated with an App Service plan.", + "description": "Description for Get a Virtual Network associated with an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/virtualNetworkConnections/{vnetName}/gateways/{gatewayName}": { + "get": { + "operationId": "AppServicePlans_GetVnetGateway", + "tags": [ + "AppServicePlans" + ], + "summary": "Get a Virtual Network gateway.", + "description": "Description for Get a Virtual Network gateway.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Only the 'primary' gateway is supported.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "AppServicePlans_UpdateVnetGateway", + "tags": [ + "AppServicePlans" + ], + "summary": "Update a Virtual Network gateway.", + "description": "Description for Update a Virtual Network gateway.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Only the 'primary' gateway is supported.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Definition of the gateway.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetGateway" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VnetGateway' update operation succeeded", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/virtualNetworkConnections/{vnetName}/routes": { + "get": { + "operationId": "AppServicePlans_ListRoutesForVnet", + "tags": [ + "AppServicePlans" + ], + "summary": "Get all routes that are associated with a Virtual Network in an App Service plan.", + "description": "Description for Get all routes that are associated with a Virtual Network in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VnetRoute" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/virtualNetworkConnections/{vnetName}/routes/{routeName}": { + "get": { + "operationId": "AppServicePlans_GetRouteForVnet", + "tags": [ + "AppServicePlans" + ], + "summary": "Get a Virtual Network route in an App Service plan.", + "description": "Description for Get a Virtual Network route in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "routeName", + "in": "path", + "description": "Name of the Virtual Network route.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VnetRoute" + } + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "AppServicePlans_CreateOrUpdateVnetRoute", + "tags": [ + "AppServicePlans" + ], + "summary": "Create or update a Virtual Network route in an App Service plan.", + "description": "Description for Create or update a Virtual Network route in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "routeName", + "in": "path", + "description": "Name of the Virtual Network route.", + "required": true, + "type": "string" + }, + { + "name": "route", + "in": "body", + "description": "Definition of the Virtual Network route.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetRoute" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VnetRoute' update operation succeeded", + "schema": { + "$ref": "#/definitions/VnetRoute" + } + }, + "400": { + "description": "The server could not understand the request due to invalid syntax.", + "x-ms-error-response": true + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "AppServicePlans_UpdateVnetRoute", + "tags": [ + "AppServicePlans" + ], + "summary": "Create or update a Virtual Network route in an App Service plan.", + "description": "Description for Create or update a Virtual Network route in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "routeName", + "in": "path", + "description": "Name of the Virtual Network route.", + "required": true, + "type": "string" + }, + { + "name": "route", + "in": "body", + "description": "Definition of the Virtual Network route.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetRoute" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VnetRoute' update operation succeeded", + "schema": { + "$ref": "#/definitions/VnetRoute" + } + }, + "400": { + "description": "The server could not understand the request due to invalid syntax.", + "x-ms-error-response": true + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "AppServicePlans_DeleteVnetRoute", + "tags": [ + "AppServicePlans" + ], + "summary": "Delete a Virtual Network route in an App Service plan.", + "description": "Description for Delete a Virtual Network route in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "routeName", + "in": "path", + "description": "Name of the Virtual Network route.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites": { + "get": { + "operationId": "WebApps_ListByResourceGroup", + "tags": [ + "WebApps" + ], + "summary": "Gets all web, mobile, and API apps in the specified resource group.", + "description": "Description for Gets all web, mobile, and API apps in the specified resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "includeSlots", + "in": "query", + "description": "Specify true to include deployment slots in results. The default is false, which only gives you the production slot of all apps.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Web Apps by Resource group": { + "$ref": "./examples/ListWebAppsByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}": { + "get": { + "operationId": "WebApps_Get", + "tags": [ + "WebApps" + ], + "summary": "Gets the details of a web, mobile, or API app.", + "description": "Description for Gets the details of a web, mobile, or API app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Web App": { + "$ref": "./examples/GetWebApp.json" + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdate", + "tags": [ + "WebApps" + ], + "summary": "Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "description": "Description for Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteEnvelope", + "in": "body", + "description": "A JSON representation of the app properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/Site" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Site' update operation succeeded", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/Site" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Clone web app": { + "$ref": "./examples/CloneWebApp.json" + }, + "Create or Update Flex Consumption function app": { + "$ref": "./examples/CreateOrUpdateFunctionAppFlexConsumption.json" + }, + "Create or Update Flex Consumption function app with details": { + "$ref": "./examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json" + }, + "Create or Update web app": { + "$ref": "./examples/CreateOrUpdateWebApp.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/Site" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "WebApps_Update", + "tags": [ + "WebApps" + ], + "summary": "Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "description": "Description for Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteEnvelope", + "in": "body", + "description": "A JSON representation of the app properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SitePatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update web app": { + "$ref": "./examples/UpdateWebApp.json" + } + } + }, + "delete": { + "operationId": "WebApps_Delete", + "tags": [ + "WebApps" + ], + "summary": "Deletes a web, mobile, or API app, or one of the deployment slots.", + "description": "Description for Deletes a web, mobile, or API app, or one of the deployment slots.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "deleteMetrics", + "in": "query", + "description": "If true, web app metrics are also deleted.", + "required": false, + "type": "boolean" + }, + { + "name": "deleteEmptyServerFarm", + "in": "query", + "description": "Specify false if you want to keep empty App Service plan. By default, empty App Service plan is deleted.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete Web app": { + "$ref": "./examples/DeleteWebApp.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/analyzeCustomHostname": { + "get": { + "operationId": "WebApps_AnalyzeCustomHostname", + "tags": [ + "WebApps" + ], + "summary": "Analyze a custom hostname.", + "description": "Description for Analyze a custom hostname.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "query", + "description": "Custom hostname.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CustomHostnameAnalysisResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Analyze custom hostname for webapp.": { + "$ref": "./examples/AnalyzeCustomHostName.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/applySlotConfig": { + "post": { + "operationId": "WebApps_ApplySlotConfigToProduction", + "tags": [ + "WebApps" + ], + "summary": "Applies the configuration settings from the target slot onto the current slot.", + "description": "Description for Applies the configuration settings from the target slot onto the current slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slotSwapEntity", + "in": "body", + "description": "JSON object that contains the target slot name. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmSlotEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Apply web app slot config": { + "$ref": "./examples/ApplySlotConfig.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/backup": { + "post": { + "operationId": "WebApps_Backup", + "tags": [ + "WebApps" + ], + "summary": "Creates a backup of an app.", + "description": "Description for Creates a backup of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Backup configuration. You can use the JSON response from the POST action as input here.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItem" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Backup web app": { + "$ref": "./examples/BackupWebApp.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/backups": { + "get": { + "operationId": "WebApps_ListBackups", + "tags": [ + "WebApps" + ], + "summary": "Gets existing backups of an app.", + "description": "Description for Gets existing backups of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItemCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List web app backups": { + "$ref": "./examples/ListWebAppBackups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/backups/{backupId}": { + "get": { + "operationId": "WebApps_GetBackupStatus", + "tags": [ + "WebApps" + ], + "summary": "Gets a backup of an app by its ID.", + "description": "Description for Gets a backup of an app by its ID.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItem" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get web app backup": { + "$ref": "./examples/GetWebAppBackup.json" + } + } + }, + "delete": { + "operationId": "WebApps_DeleteBackup", + "tags": [ + "WebApps" + ], + "summary": "Deletes a backup of an app by its ID.", + "description": "Description for Deletes a backup of an app by its ID.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete web app backup": { + "$ref": "./examples/DeleteWebAppBackup.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/backups/{backupId}/list": { + "post": { + "operationId": "WebApps_ListBackupStatusSecrets", + "tags": [ + "WebApps" + ], + "summary": "Gets status of a web app backup that may be in progress, including secrets associated with the backup, such as the Azure Storage SAS URL. Also can be used to update the SAS URL for the backup if a new URL is passed in the request body.", + "description": "Description for Gets status of a web app backup that may be in progress, including secrets associated with the backup, such as the Azure Storage SAS URL. Also can be used to update the SAS URL for the backup if a new URL is passed in the request body.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Information on backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItem" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get web app backup with secrets": { + "$ref": "./examples/GetWebAppBackupWithSecrets.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/backups/{backupId}/restore": { + "post": { + "operationId": "WebApps_Restore", + "tags": [ + "WebApps" + ], + "summary": "Restores a specific backup to another app (or deployment slot, if specified).", + "description": "Description for Restores a specific backup to another app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Information on restore request .", + "required": true, + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Restore web app from backup": { + "$ref": "./examples/RestoreWebAppBackup.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/basicPublishingCredentialsPolicies": { + "get": { + "operationId": "WebApps_ListBasicPublishingCredentialsPolicies", + "tags": [ + "WebApps" + ], + "summary": "Returns whether Scm basic auth is allowed and whether Ftp is allowed for a given site.", + "description": "Description for Returns whether Scm basic auth is allowed and whether Ftp is allowed for a given site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PublishingCredentialsPoliciesCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Publishing Credentials Policies": { + "$ref": "./examples/ListPublishingCredentialsPolicies.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/basicPublishingCredentialsPolicies/ftp": { + "get": { + "operationId": "WebApps_GetFtpAllowed", + "tags": [ + "WebApps" + ], + "summary": "Returns whether FTP is allowed on the site or not.", + "description": "Description for Returns whether FTP is allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get FTP Allowed": { + "$ref": "./examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json" + } + } + }, + "put": { + "operationId": "WebApps_UpdateFtpAllowed", + "tags": [ + "WebApps" + ], + "summary": "Updates whether FTP is allowed on the site or not.", + "description": "Description for Updates whether FTP is allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "csmPublishingAccessPoliciesEntity", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + } + ], + "responses": { + "200": { + "description": "Resource 'CsmPublishingCredentialsPoliciesEntity' update operation succeeded", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update FTP Allowed": { + "$ref": "./examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/basicPublishingCredentialsPolicies/scm": { + "get": { + "operationId": "WebApps_GetScmAllowed", + "tags": [ + "WebApps" + ], + "summary": "Returns whether Scm basic auth is allowed on the site or not.", + "description": "Description for Returns whether Scm basic auth is allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get SCM Allowed": { + "$ref": "./examples/GetPublishingCredentialsPolicy.json" + } + } + }, + "put": { + "operationId": "WebApps_UpdateScmAllowed", + "tags": [ + "WebApps" + ], + "summary": "Updates whether user publishing credentials are allowed on the site or not.", + "description": "Description for Updates whether user publishing credentials are allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "csmPublishingAccessPoliciesEntity", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + } + ], + "responses": { + "200": { + "description": "Resource 'CsmPublishingCredentialsPoliciesEntity' update operation succeeded", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update SCM Allowed": { + "$ref": "./examples/UpdatePublishingCredentialsPolicy.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/certificates": { + "get": { + "operationId": "SiteCertificates_List", + "tags": [ + "SiteCertificates" + ], + "summary": "Get all certificates in a resource group under a site.", + "description": "Get all certificates in a resource group under a site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CertificateCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Certificates by resource group": { + "$ref": "./examples/ListSiteCertificatesByResourceGroup.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/certificates/{certificateName}": { + "get": { + "operationId": "SiteCertificates_Get", + "tags": [ + "SiteCertificates" + ], + "summary": "Get a certificate belonging to a given site.", + "description": "Get a certificate belonging to a given site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Certificate": { + "$ref": "./examples/GetSiteCertificate.json" + } + } + }, + "put": { + "operationId": "SiteCertificates_CreateOrUpdate", + "tags": [ + "SiteCertificates" + ], + "summary": "Create or update a certificate under a given site.", + "description": "Create or update a certificate under a given site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateEnvelope", + "in": "body", + "description": "Details of certificate, if it exists already.", + "required": true, + "schema": { + "$ref": "#/definitions/Certificate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Certificate' update operation succeeded", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "201": { + "description": "Resource 'Certificate' create operation succeeded", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create Or Update Certificate": { + "$ref": "./examples/CreateOrUpdateSiteCertificate.json" + } + } + }, + "patch": { + "operationId": "SiteCertificates_Update", + "tags": [ + "SiteCertificates" + ], + "summary": "Create or update a certificate under a given site.", + "description": "Create or update a certificate under a given site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateEnvelope", + "in": "body", + "description": "Details of certificate, if it exists already.", + "required": true, + "schema": { + "$ref": "#/definitions/CertificatePatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Patch Certificate": { + "$ref": "./examples/PatchSiteCertificate.json" + } + } + }, + "delete": { + "operationId": "SiteCertificates_Delete", + "tags": [ + "SiteCertificates" + ], + "summary": "Delete a certificate from the site.", + "description": "Delete a certificate from the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete Certificate": { + "$ref": "./examples/DeleteSiteCertificate.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config": { + "get": { + "operationId": "WebApps_ListConfigurations", + "tags": [ + "WebApps" + ], + "summary": "List the configurations of an app", + "description": "Description for List the configurations of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResourceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List web app configurations": { + "$ref": "./examples/ListWebAppConfigurations.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/appsettings": { + "put": { + "operationId": "WebApps_UpdateApplicationSettings", + "tags": [ + "WebApps" + ], + "summary": "Replaces the application settings of an app.", + "description": "Description for Replaces the application settings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "appSettings", + "in": "body", + "description": "Application settings of the app.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update App Settings": { + "$ref": "./examples/UpdateAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/appsettings/list": { + "post": { + "operationId": "WebApps_ListApplicationSettings", + "tags": [ + "WebApps" + ], + "summary": "Gets the application settings of an app.", + "description": "Description for Gets the application settings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Settings": { + "$ref": "./examples/ListAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/authsettings": { + "put": { + "operationId": "WebApps_UpdateAuthSettings", + "tags": [ + "WebApps" + ], + "summary": "Updates the Authentication / Authorization settings associated with web app.", + "description": "Description for Updates the Authentication / Authorization settings associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteAuthSettings", + "in": "body", + "description": "Auth settings associated with web app.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteAuthSettings" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update Auth Settings": { + "$ref": "./examples/UpdateAuthSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/authsettings/list": { + "post": { + "operationId": "WebApps_GetAuthSettings", + "tags": [ + "WebApps" + ], + "summary": "Gets the Authentication/Authorization settings of an app.", + "description": "Description for Gets the Authentication/Authorization settings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Auth Settings": { + "$ref": "./examples/ListAuthSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/authsettingsV2": { + "get": { + "operationId": "WebApps_GetAuthSettingsV2WithoutSecrets", + "tags": [ + "WebApps" + ], + "summary": "Gets site's Authentication / Authorization settings for apps via the V2 format", + "description": "Description for Gets site's Authentication / Authorization settings for apps via the V2 format", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Auth Settings without Secrets": { + "$ref": "./examples/GetAuthSettingsV2WithoutSecrets.json" + } + } + }, + "put": { + "operationId": "WebApps_UpdateAuthSettingsV2", + "tags": [ + "WebApps" + ], + "summary": "Updates site's Authentication / Authorization settings for apps via the V2 format", + "description": "Description for Updates site's Authentication / Authorization settings for apps via the V2 format", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteAuthSettingsV2", + "in": "body", + "description": "Auth settings associated with web app.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteAuthSettingsV2' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update Auth Settings V2": { + "$ref": "./examples/UpdateAuthSettingsV2.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/authsettingsV2/list": { + "get": { + "operationId": "WebApps_GetAuthSettingsV2", + "tags": [ + "WebApps" + ], + "summary": "Gets site's Authentication / Authorization settings for apps via the V2 format", + "description": "Description for Gets site's Authentication / Authorization settings for apps via the V2 format", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Auth Settings V2": { + "$ref": "./examples/ListAuthSettingsV2.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/azurestorageaccounts": { + "put": { + "operationId": "WebApps_UpdateAzureStorageAccounts", + "tags": [ + "WebApps" + ], + "summary": "Updates the Azure storage account configurations of an app.", + "description": "Description for Updates the Azure storage account configurations of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "azureStorageAccounts", + "in": "body", + "description": "Azure storage accounts of the app.", + "required": true, + "schema": { + "$ref": "#/definitions/AzureStoragePropertyDictionaryResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AzureStoragePropertyDictionaryResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update Azure Storage Accounts": { + "$ref": "./examples/UpdateAzureStorageAccounts.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/azurestorageaccounts/list": { + "post": { + "operationId": "WebApps_ListAzureStorageAccounts", + "tags": [ + "WebApps" + ], + "summary": "Gets the Azure storage account configurations of an app.", + "description": "Description for Gets the Azure storage account configurations of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AzureStoragePropertyDictionaryResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/backup": { + "put": { + "operationId": "WebApps_UpdateBackupConfiguration", + "tags": [ + "WebApps" + ], + "summary": "Updates the backup configuration of an app.", + "description": "Description for Updates the backup configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Edited backup configuration.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupRequest" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteBackupConfiguration", + "tags": [ + "WebApps" + ], + "summary": "Deletes the backup configuration of an app.", + "description": "Description for Deletes the backup configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/backup/list": { + "post": { + "operationId": "WebApps_GetBackupConfiguration", + "tags": [ + "WebApps" + ], + "summary": "Gets the backup configuration of an app.", + "description": "Description for Gets the backup configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupRequest" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/configreferences/appsettings": { + "get": { + "operationId": "WebApps_GetAppSettingsKeyVaultReferences", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference app settings and status of an app", + "description": "Description for Gets the config reference app settings and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReferenceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Azure Key Vault references for app settings": { + "$ref": "./examples/GetKeyVaultReferencesForAppSettings.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/configreferences/appsettings/{appSettingKey}": { + "get": { + "operationId": "WebApps_GetAppSettingKeyVaultReference", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference and status of an app", + "description": "Description for Gets the config reference and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "appSettingKey", + "in": "path", + "description": "App Setting key name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Azure Key Vault app setting reference": { + "$ref": "./examples/GetKeyVaultReferencesForAppSetting.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/configreferences/connectionstrings": { + "get": { + "operationId": "WebApps_GetSiteConnectionStringKeyVaultReferences", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference app settings and status of an app", + "description": "Description for Gets the config reference app settings and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReferenceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/configreferences/connectionstrings/{connectionStringKey}": { + "get": { + "operationId": "WebApps_GetSiteConnectionStringKeyVaultReference", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference and status of an app", + "description": "Description for Gets the config reference and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "connectionStringKey", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/connectionstrings": { + "put": { + "operationId": "WebApps_UpdateConnectionStrings", + "tags": [ + "WebApps" + ], + "summary": "Replaces the connection strings of an app.", + "description": "Description for Replaces the connection strings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "connectionStrings", + "in": "body", + "description": "Connection strings of the app or deployment slot. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/ConnectionStringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConnectionStringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/connectionstrings/list": { + "post": { + "operationId": "WebApps_ListConnectionStrings", + "tags": [ + "WebApps" + ], + "summary": "Gets the connection strings of an app.", + "description": "Description for Gets the connection strings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConnectionStringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/logs": { + "get": { + "operationId": "WebApps_GetDiagnosticLogsConfiguration", + "tags": [ + "WebApps" + ], + "summary": "Gets the logging configuration of an app.", + "description": "Description for Gets the logging configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteLogsConfig" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_UpdateDiagnosticLogsConfig", + "tags": [ + "WebApps" + ], + "summary": "Updates the logging configuration of an app.", + "description": "Description for Updates the logging configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteLogsConfig", + "in": "body", + "description": "A SiteLogsConfig JSON object that contains the logging configuration to change in the \"properties\"property", + "required": true, + "schema": { + "$ref": "#/definitions/SiteLogsConfig" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteLogsConfig' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteLogsConfig" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/metadata": { + "put": { + "operationId": "WebApps_UpdateMetadata", + "tags": [ + "WebApps" + ], + "summary": "Replaces the metadata of an app.", + "description": "Description for Replaces the metadata of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "metadata", + "in": "body", + "description": "Edited metadata of the app or deployment slot. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/metadata/list": { + "post": { + "operationId": "WebApps_ListMetadata", + "tags": [ + "WebApps" + ], + "summary": "Gets the metadata of an app.", + "description": "Description for Gets the metadata of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/publishingcredentials/list": { + "post": { + "operationId": "WebApps_ListPublishingCredentials", + "tags": [ + "WebApps" + ], + "summary": "Gets the Git/FTP publishing credentials of an app.", + "description": "Description for Gets the Git/FTP publishing credentials of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/User" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/User" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/pushsettings": { + "put": { + "operationId": "WebApps_UpdateSitePushSettings", + "tags": [ + "WebApps" + ], + "summary": "Updates the Push settings associated with web app.", + "description": "Description for Updates the Push settings associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "pushSettings", + "in": "body", + "description": "Push settings associated with web app.", + "required": true, + "schema": { + "$ref": "#/definitions/PushSettings" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PushSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/pushsettings/list": { + "post": { + "operationId": "WebApps_ListSitePushSettings", + "tags": [ + "WebApps" + ], + "summary": "Gets the Push settings associated with web app.", + "description": "Description for Gets the Push settings associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PushSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/slotConfigNames": { + "get": { + "operationId": "WebApps_ListSlotConfigurationNames", + "tags": [ + "WebApps" + ], + "summary": "Gets the names of app settings and connection strings that stick to the slot (not swapped).", + "description": "Description for Gets the names of app settings and connection strings that stick to the slot (not swapped).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SlotConfigNamesResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_UpdateSlotConfigurationNames", + "tags": [ + "WebApps" + ], + "summary": "Updates the names of application settings and connection string that remain with the slot during swap operation.", + "description": "Description for Updates the names of application settings and connection string that remain with the slot during swap operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slotConfigNames", + "in": "body", + "description": "Names of application settings and connection strings. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SlotConfigNamesResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SlotConfigNamesResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/SlotConfigNamesResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/web": { + "get": { + "operationId": "WebApps_GetConfiguration", + "tags": [ + "WebApps" + ], + "summary": "Gets the configuration of an app, such as platform version and bitness, default documents, virtual applications, Always On, etc.", + "description": "Description for Gets the configuration of an app, such as platform version and bitness, default documents, virtual applications, Always On, etc.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Site Config": { + "$ref": "./examples/GetSiteConfig.json" + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateConfiguration", + "tags": [ + "WebApps" + ], + "summary": "Updates the configuration of an app.", + "description": "Description for Updates the configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteConfig", + "in": "body", + "description": "JSON representation of a SiteConfig object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteConfigResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update Site Config": { + "$ref": "./examples/UpdateSiteConfig.json" + } + } + }, + "patch": { + "operationId": "WebApps_UpdateConfiguration", + "tags": [ + "WebApps" + ], + "summary": "Updates the configuration of an app.", + "description": "Description for Updates the configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteConfig", + "in": "body", + "description": "JSON representation of a SiteConfig object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/web/snapshots": { + "get": { + "operationId": "WebApps_ListConfigurationSnapshotInfo", + "tags": [ + "WebApps" + ], + "summary": "Gets a list of web app configuration snapshots identifiers. Each element of the list contains a timestamp and the ID of the snapshot.", + "description": "Description for Gets a list of web app configuration snapshots identifiers. Each element of the list contains a timestamp and the ID of the snapshot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigurationSnapshotInfoCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/web/snapshots/{snapshotId}": { + "get": { + "operationId": "WebApps_GetConfigurationSnapshot", + "tags": [ + "WebApps" + ], + "summary": "Gets a snapshot of the configuration of an app at a previous point in time.", + "description": "Description for Gets a snapshot of the configuration of an app at a previous point in time.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "snapshotId", + "in": "path", + "description": "The ID of the snapshot to read.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/web/snapshots/{snapshotId}/recover": { + "post": { + "operationId": "WebApps_RecoverSiteConfigurationSnapshot", + "tags": [ + "WebApps" + ], + "summary": "Reverts the configuration of an app to a previous snapshot.", + "description": "Description for Reverts the configuration of an app to a previous snapshot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "snapshotId", + "in": "path", + "description": "The ID of the snapshot to read.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/containerlogs": { + "post": { + "operationId": "WebApps_GetWebSiteContainerLogs", + "tags": [ + "WebApps" + ], + "summary": "Gets the last lines of docker logs for the given site", + "description": "Description for Gets the last lines of docker logs for the given site", + "produces": [ + "application/octet-stream", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/containerlogs/zip/download": { + "post": { + "operationId": "WebApps_GetContainerLogsZip", + "tags": [ + "WebApps" + ], + "summary": "Gets the ZIP archived docker log files for the given site", + "description": "Description for Gets the ZIP archived docker log files for the given site", + "produces": [ + "application/zip", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/continuouswebjobs": { + "get": { + "operationId": "WebApps_ListContinuousWebJobs", + "tags": [ + "WebApps" + ], + "summary": "List continuous web jobs for an app, or a deployment slot.", + "description": "Description for List continuous web jobs for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ContinuousWebJobCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/continuouswebjobs/{webJobName}": { + "get": { + "operationId": "WebApps_GetContinuousWebJob", + "tags": [ + "WebApps" + ], + "summary": "Gets a continuous web job by its ID for an app, or a deployment slot.", + "description": "Description for Gets a continuous web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ContinuousWebJob" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteContinuousWebJob", + "tags": [ + "WebApps" + ], + "summary": "Delete a continuous web job by its ID for an app, or a deployment slot.", + "description": "Description for Delete a continuous web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/continuouswebjobs/{webJobName}/start": { + "post": { + "operationId": "WebApps_StartContinuousWebJob", + "tags": [ + "WebApps" + ], + "summary": "Start a continuous web job for an app, or a deployment slot.", + "description": "Description for Start a continuous web job for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/continuouswebjobs/{webJobName}/stop": { + "post": { + "operationId": "WebApps_StopContinuousWebJob", + "tags": [ + "WebApps" + ], + "summary": "Stop a continuous web job for an app, or a deployment slot.", + "description": "Description for Stop a continuous web job for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/deployWorkflowArtifacts": { + "post": { + "operationId": "WebApps_DeployWorkflowArtifacts", + "tags": [ + "WebApps" + ], + "summary": "Creates the artifacts for web site, or a deployment slot.", + "description": "Description for Creates the artifacts for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "workflowArtifacts", + "in": "body", + "description": "Application settings and files of the workflow.", + "required": false, + "schema": { + "$ref": "#/definitions/WorkflowArtifacts" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete workflow artifacts": { + "$ref": "./examples/DeleteDeployWorkflowArtifacts.json" + }, + "Deploys workflow artifacts": { + "$ref": "./examples/PostDeployWorkflowArtifacts.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/deploymentStatus": { + "get": { + "operationId": "WebApps_ListProductionSiteDeploymentStatuses", + "tags": [ + "WebApps" + ], + "summary": "List deployment statuses for an app (or deployment slot, if specified).", + "description": "List deployment statuses for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmDeploymentStatusCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Deployment Status": { + "$ref": "./examples/ListSiteDeploymentStatus.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/deploymentStatus/{deploymentStatusId}": { + "get": { + "operationId": "WebApps_GetProductionSiteDeploymentStatus", + "tags": [ + "WebApps" + ], + "summary": "Gets the deployment status for an app (or deployment slot, if specified).", + "description": "Gets the deployment status for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "deploymentStatusId", + "in": "path", + "description": "GUID of the deployment operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmDeploymentStatus" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/CsmDeploymentStatus" + }, + "headers": { + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Deployment Status": { + "$ref": "./examples/GetSiteDeploymentStatus.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/deployments": { + "get": { + "operationId": "WebApps_ListDeployments", + "tags": [ + "WebApps" + ], + "summary": "List deployments for an app, or a deployment slot.", + "description": "Description for List deployments for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DeploymentCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/deployments/{id}": { + "get": { + "operationId": "WebApps_GetDeployment", + "tags": [ + "WebApps" + ], + "summary": "Get a deployment by its ID for an app, or a deployment slot.", + "description": "Description for Get a deployment by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Deployment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateDeployment", + "tags": [ + "WebApps" + ], + "summary": "Create a deployment for an app, or a deployment slot.", + "description": "Description for Create a deployment for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + }, + { + "name": "deployment", + "in": "body", + "description": "Deployment details.", + "required": true, + "schema": { + "$ref": "#/definitions/Deployment" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Deployment' update operation succeeded", + "schema": { + "$ref": "#/definitions/Deployment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteDeployment", + "tags": [ + "WebApps" + ], + "summary": "Delete a deployment by its ID for an app, or a deployment slot.", + "description": "Description for Delete a deployment by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/deployments/{id}/log": { + "get": { + "operationId": "WebApps_ListDeploymentLog", + "tags": [ + "WebApps" + ], + "summary": "List deployment log for specific deployment for an app, or a deployment slot.", + "description": "Description for List deployment log for specific deployment for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Deployment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/detectors": { + "get": { + "operationId": "Diagnostics_ListSiteDetectorResponses", + "tags": [ + "Diagnostics" + ], + "summary": "List Site Detector Responses", + "description": "Description for List Site Detector Responses", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorResponseCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Detector Responses": { + "$ref": "./examples/Diagnostics_ListSiteDetectorResponses.json" + }, + "Get App Slot Detector Responses": { + "$ref": "./examples/Diagnostics_ListSiteDetectorResponsesSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/detectors/{detectorName}": { + "get": { + "operationId": "Diagnostics_GetSiteDetectorResponse", + "tags": [ + "Diagnostics" + ], + "summary": "Get site detector response", + "description": "Description for Get site detector response", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "detectorName", + "in": "path", + "description": "Detector Resource Name", + "required": true, + "type": "string" + }, + { + "name": "startTime", + "in": "query", + "description": "Start Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "endTime", + "in": "query", + "description": "End Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "timeGrain", + "in": "query", + "description": "Time Grain", + "required": false, + "type": "string", + "pattern": "PT[1-9][0-9]+[SMH]" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Detector Response": { + "$ref": "./examples/Diagnostics_GetSiteDetectorResponse.json" + }, + "Get App Slot Detector Response": { + "$ref": "./examples/Diagnostics_GetSiteDetectorResponseSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics": { + "get": { + "operationId": "Diagnostics_ListSiteDiagnosticCategories", + "tags": [ + "Diagnostics" + ], + "summary": "Get Diagnostics Categories", + "description": "Description for Get Diagnostics Categories", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticCategoryCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Diagnostic Categories": { + "$ref": "./examples/Diagnostics_ListSiteDiagnosticCategories.json" + }, + "List App Slot Diagnostic Categories": { + "$ref": "./examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics/{diagnosticCategory}": { + "get": { + "operationId": "Diagnostics_GetSiteDiagnosticCategory", + "tags": [ + "Diagnostics" + ], + "summary": "Get Diagnostics Category", + "description": "Description for Get Diagnostics Category", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticCategory" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Diagnostic Category": { + "$ref": "./examples/Diagnostics_GetSiteDiagnosticCategory.json" + }, + "Get App Slot Diagnostic Category": { + "$ref": "./examples/Diagnostics_GetSiteDiagnosticCategorySlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics/{diagnosticCategory}/analyses": { + "get": { + "operationId": "Diagnostics_ListSiteAnalyses", + "tags": [ + "Diagnostics" + ], + "summary": "Get Site Analyses", + "description": "Description for Get Site Analyses", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticAnalysisCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Analyses": { + "$ref": "./examples/Diagnostics_ListSiteAnalyses.json" + }, + "List App Slot Analyses": { + "$ref": "./examples/Diagnostics_ListSiteAnalysesSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics/{diagnosticCategory}/analyses/{analysisName}": { + "get": { + "operationId": "Diagnostics_GetSiteAnalysis", + "tags": [ + "Diagnostics" + ], + "summary": "Get Site Analysis", + "description": "Description for Get Site Analysis", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "analysisName", + "in": "path", + "description": "Analysis Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AnalysisDefinition" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Analysis": { + "$ref": "./examples/Diagnostics_GetSiteAnalysis.json" + }, + "Get App Slot Analysis": { + "$ref": "./examples/Diagnostics_GetSiteAnalysisSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics/{diagnosticCategory}/analyses/{analysisName}/execute": { + "post": { + "operationId": "Diagnostics_ExecuteSiteAnalysis", + "tags": [ + "Diagnostics" + ], + "summary": "Execute Analysis", + "description": "Description for Execute Analysis", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "analysisName", + "in": "path", + "description": "Analysis Name", + "required": true, + "type": "string" + }, + { + "name": "startTime", + "in": "query", + "description": "Start Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "endTime", + "in": "query", + "description": "End Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "timeGrain", + "in": "query", + "description": "Time Grain", + "required": false, + "type": "string", + "pattern": "PT[1-9][0-9]+[SMH]" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticAnalysis" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Execute site analysis": { + "$ref": "./examples/Diagnostics_ExecuteSiteAnalysis.json" + }, + "Execute site slot analysis": { + "$ref": "./examples/Diagnostics_ExecuteSiteAnalysisSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics/{diagnosticCategory}/detectors": { + "get": { + "operationId": "Diagnostics_ListSiteDetectors", + "tags": [ + "Diagnostics" + ], + "summary": "Get Detectors", + "description": "Description for Get Detectors", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticDetectorCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Detectors": { + "$ref": "./examples/Diagnostics_ListSiteDetectors.json" + }, + "List App Slot Detectors": { + "$ref": "./examples/Diagnostics_ListSiteDetectorsSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics/{diagnosticCategory}/detectors/{detectorName}": { + "get": { + "operationId": "Diagnostics_GetSiteDetector", + "tags": [ + "Diagnostics" + ], + "summary": "Get Detector", + "description": "Description for Get Detector", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "detectorName", + "in": "path", + "description": "Detector Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorDefinitionResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Detector": { + "$ref": "./examples/Diagnostics_GetSiteDetector.json" + }, + "Get App Slot Detector": { + "$ref": "./examples/Diagnostics_GetSiteDetectorSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/diagnostics/{diagnosticCategory}/detectors/{detectorName}/execute": { + "post": { + "operationId": "Diagnostics_ExecuteSiteDetector", + "tags": [ + "Diagnostics" + ], + "summary": "Execute Detector", + "description": "Description for Execute Detector", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "detectorName", + "in": "path", + "description": "Detector Name", + "required": true, + "type": "string" + }, + { + "name": "startTime", + "in": "query", + "description": "Start Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "endTime", + "in": "query", + "description": "End Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "timeGrain", + "in": "query", + "description": "Time Grain", + "required": false, + "type": "string", + "pattern": "PT[1-9][0-9]+[SMH]" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticDetectorResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Execute site detector": { + "$ref": "./examples/Diagnostics_ExecuteSiteDetector.json" + }, + "Execute site slot detector": { + "$ref": "./examples/Diagnostics_ExecuteSiteDetectorSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/discoverbackup": { + "post": { + "operationId": "WebApps_DiscoverBackup", + "tags": [ + "WebApps" + ], + "summary": "Discovers an existing app backup that can be restored from a blob in Azure storage. Use this to get information about the databases stored in a backup.", + "description": "Description for Discovers an existing app backup that can be restored from a blob in Azure storage. Use this to get information about the databases stored in a backup.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "A RestoreRequest object that includes Azure storage URL and blog name for discovery of backup.", + "required": true, + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/domainOwnershipIdentifiers": { + "get": { + "operationId": "WebApps_ListDomainOwnershipIdentifiers", + "tags": [ + "WebApps" + ], + "summary": "Lists ownership identifiers for domain associated with web app.", + "description": "Description for Lists ownership identifiers for domain associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/IdentifierCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/domainOwnershipIdentifiers/{domainOwnershipIdentifierName}": { + "get": { + "operationId": "WebApps_GetDomainOwnershipIdentifier", + "tags": [ + "WebApps" + ], + "summary": "Get domain ownership identifier for web app.", + "description": "Description for Get domain ownership identifier for web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Identifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateDomainOwnershipIdentifier", + "tags": [ + "WebApps" + ], + "summary": "Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "description": "Description for Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifier", + "in": "body", + "description": "A JSON representation of the domain ownership properties.", + "required": true, + "schema": { + "$ref": "#/definitions/Identifier" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Identifier' update operation succeeded", + "schema": { + "$ref": "#/definitions/Identifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateDomainOwnershipIdentifier", + "tags": [ + "WebApps" + ], + "summary": "Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "description": "Description for Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifier", + "in": "body", + "description": "A JSON representation of the domain ownership properties.", + "required": true, + "schema": { + "$ref": "#/definitions/Identifier" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Identifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteDomainOwnershipIdentifier", + "tags": [ + "WebApps" + ], + "summary": "Deletes a domain ownership identifier for a web app.", + "description": "Description for Deletes a domain ownership identifier for a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/extensions/MSDeploy": { + "get": { + "operationId": "WebApps_GetMSDeployStatus", + "tags": [ + "WebApps" + ], + "summary": "Get the status of the last MSDeploy operation.", + "description": "Description for Get the status of the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateMSDeployOperation", + "tags": [ + "WebApps" + ], + "summary": "Invoke the MSDeploy web app extension.", + "description": "Description for Invoke the MSDeploy web app extension.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "MSDeploy", + "in": "body", + "description": "Details of MSDeploy operation", + "required": true, + "schema": { + "$ref": "#/definitions/MSDeploy" + } + } + ], + "responses": { + "201": { + "description": "Resource 'MSDeployStatus' create operation succeeded", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "409": { + "description": "The request conflicts with the current state of the server.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/MSDeployStatus" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/extensions/MSDeploy/log": { + "get": { + "operationId": "WebApps_GetMSDeployLog", + "tags": [ + "WebApps" + ], + "summary": "Get the MSDeploy Log for the last MSDeploy operation.", + "description": "Description for Get the MSDeploy Log for the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployLog" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/extensions/onedeploy": { + "get": { + "operationId": "WebApps_GetOneDeployStatus", + "tags": [ + "WebApps" + ], + "summary": "Invoke onedeploy status API /api/deployments and gets the deployment status for the site", + "description": "Description for Invoke onedeploy status API /api/deployments and gets the deployment status for the site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOneDeployOperation", + "tags": [ + "WebApps" + ], + "summary": "Invoke the OneDeploy publish web app extension.", + "description": "Description for Invoke the OneDeploy publish web app extension.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/functions": { + "get": { + "operationId": "WebApps_ListFunctions", + "tags": [ + "WebApps" + ], + "summary": "List the functions for a web site, or a deployment slot.", + "description": "Description for List the functions for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionEnvelopeCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/functions/{functionName}": { + "get": { + "operationId": "WebApps_GetFunction", + "tags": [ + "WebApps" + ], + "summary": "Get function information by its ID for web site, or a deployment slot.", + "description": "Description for Get function information by its ID for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionEnvelope" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateFunction", + "tags": [ + "WebApps" + ], + "summary": "Create function for web site, or a deployment slot.", + "description": "Description for Create function for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + }, + { + "name": "function_envelope", + "in": "body", + "description": "Function details.", + "required": true, + "schema": { + "$ref": "#/definitions/FunctionEnvelope" + } + } + ], + "responses": { + "201": { + "description": "Resource 'FunctionEnvelope' create operation succeeded", + "schema": { + "$ref": "#/definitions/FunctionEnvelope" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/FunctionEnvelope" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "WebApps_DeleteFunction", + "tags": [ + "WebApps" + ], + "summary": "Delete a function for web site, or a deployment slot.", + "description": "Description for Delete a function for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/functions/{functionName}/listkeys": { + "post": { + "operationId": "WebApps_ListFunctionKeys", + "tags": [ + "WebApps" + ], + "summary": "Get function keys for a function in a web site, or a deployment slot.", + "description": "Description for Get function keys for a function in a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/functions/{functionName}/listsecrets": { + "post": { + "operationId": "WebApps_ListFunctionSecrets", + "tags": [ + "WebApps" + ], + "summary": "Get function secrets for a function in a web site, or a deployment slot.", + "description": "Description for Get function secrets for a function in a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionSecrets" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/functions/admin/token": { + "get": { + "operationId": "WebApps_GetFunctionsAdminToken", + "tags": [ + "WebApps" + ], + "summary": "Fetch a short lived token that can be exchanged for a master key.", + "description": "Description for Fetch a short lived token that can be exchanged for a master key.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/stringApplicationJson" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/host/default/listkeys": { + "post": { + "operationId": "WebApps_ListHostKeys", + "tags": [ + "WebApps" + ], + "summary": "Get host secrets for a function app.", + "description": "Description for Get host secrets for a function app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HostKeys" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/host/default/listsyncstatus": { + "post": { + "operationId": "WebApps_ListSyncStatus", + "tags": [ + "WebApps" + ], + "summary": "This is to allow calling via powershell and ARM template.", + "description": "Description for This is to allow calling via powershell and ARM template.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/host/default/sync": { + "post": { + "operationId": "WebApps_SyncFunctions", + "tags": [ + "WebApps" + ], + "summary": "Syncs function trigger metadata to the management database", + "description": "Description for Syncs function trigger metadata to the management database", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostNameBindings": { + "get": { + "operationId": "WebApps_ListHostNameBindings", + "tags": [ + "WebApps" + ], + "summary": "Get hostname bindings for an app or a deployment slot.", + "description": "Description for Get hostname bindings for an app or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HostNameBindingCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostNameBindings/{hostName}": { + "get": { + "operationId": "WebApps_GetHostNameBinding", + "tags": [ + "WebApps" + ], + "summary": "Get the named hostname binding for an app (or deployment slot, if specified).", + "description": "Description for Get the named hostname binding for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "Hostname in the hostname binding.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HostNameBinding" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateHostNameBinding", + "tags": [ + "WebApps" + ], + "summary": "Creates a hostname binding for an app.", + "description": "Description for Creates a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "Hostname in the hostname binding.", + "required": true, + "type": "string" + }, + { + "name": "hostNameBinding", + "in": "body", + "description": "Binding details. This is the JSON representation of a HostNameBinding object.", + "required": true, + "schema": { + "$ref": "#/definitions/HostNameBinding" + } + } + ], + "responses": { + "200": { + "description": "Resource 'HostNameBinding' update operation succeeded", + "schema": { + "$ref": "#/definitions/HostNameBinding" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteHostNameBinding", + "tags": [ + "WebApps" + ], + "summary": "Deletes a hostname binding for an app.", + "description": "Description for Deletes a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "Hostname in the hostname binding.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/regenerateAccessKey": { + "post": { + "operationId": "Workflows_RegenerateAccessKey", + "tags": [ + "Workflows" + ], + "description": "Regenerates the callback URL access key for request triggers.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "keyType", + "in": "body", + "description": "The access key type.", + "required": true, + "schema": { + "$ref": "#/definitions/RegenerateActionParameter" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Regenerate the callback URL access key for request triggers": { + "$ref": "./examples/Workflows_RegenerateAccessKey.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs": { + "get": { + "operationId": "WorkflowRuns_List", + "tags": [ + "WorkflowRuns" + ], + "description": "Gets a list of workflow runs.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "description": "The number of items to be included in the result.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "in": "query", + "description": "The filter to apply on the operation. Options for filters include: Status, StartTime, and ClientTrackingId.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRunListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List workflow runs": { + "$ref": "./examples/WorkflowRuns_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}": { + "get": { + "operationId": "WorkflowRuns_Get", + "tags": [ + "WorkflowRuns" + ], + "description": "Gets a workflow run.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRun" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a run for a workflow": { + "$ref": "./examples/WorkflowRuns_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions": { + "get": { + "operationId": "WorkflowRunActions_List", + "tags": [ + "WorkflowRunActions" + ], + "description": "Gets a list of workflow run actions.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "description": "The number of items to be included in the result.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "in": "query", + "description": "The filter to apply on the operation. Options for filters include: Status.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRunActionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List a workflow run actions": { + "$ref": "./examples/WorkflowRunActions_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}": { + "get": { + "operationId": "WorkflowRunActions_Get", + "tags": [ + "WorkflowRunActions" + ], + "description": "Gets a workflow run action.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRunAction" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a workflow run action": { + "$ref": "./examples/WorkflowRunActions_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/listExpressionTraces": { + "post": { + "operationId": "WorkflowRunActions_ListExpressionTraces", + "tags": [ + "WorkflowRunActions" + ], + "description": "Lists a workflow run expression trace.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ExpressionTraces" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List expression traces": { + "$ref": "./examples/WorkflowRunActions_ListExpressionTraces.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink", + "itemName": "inputs" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/repetitions": { + "get": { + "operationId": "WorkflowRunActionRepetitions_List", + "tags": [ + "WorkflowRunActions" + ], + "description": "Get all of a workflow run action repetitions.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRunActionRepetitionDefinitionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List repetitions": { + "$ref": "./examples/WorkflowRunActionRepetitions_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/repetitions/{repetitionName}": { + "get": { + "operationId": "WorkflowRunActionRepetitions_Get", + "tags": [ + "WorkflowRunActions" + ], + "description": "Get a workflow run action repetition.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + }, + { + "name": "repetitionName", + "in": "path", + "description": "The workflow repetition.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRunActionRepetitionDefinition" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a repetition": { + "$ref": "./examples/WorkflowRunActionRepetitions_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/repetitions/{repetitionName}/listExpressionTraces": { + "post": { + "operationId": "WorkflowRunActionRepetitions_ListExpressionTraces", + "tags": [ + "WorkflowRunActions" + ], + "description": "Lists a workflow run expression trace.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + }, + { + "name": "repetitionName", + "in": "path", + "description": "The workflow repetition.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ExpressionTraces" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List expression traces for a repetition": { + "$ref": "./examples/WorkflowRunActionRepetitions_ListExpressionTraces.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink", + "itemName": "inputs" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/repetitions/{repetitionName}/requestHistories": { + "get": { + "operationId": "WorkflowRunActionRepetitionsRequestHistories_List", + "tags": [ + "WorkflowRunActions" + ], + "description": "List a workflow run repetition request history.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + }, + { + "name": "repetitionName", + "in": "path", + "description": "The workflow repetition.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RequestHistoryListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List repetition request history": { + "$ref": "./examples/WorkflowRunActionRepetitionsRequestHistories_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/repetitions/{repetitionName}/requestHistories/{requestHistoryName}": { + "get": { + "operationId": "WorkflowRunActionRepetitionsRequestHistories_Get", + "tags": [ + "WorkflowRunActions" + ], + "description": "Gets a workflow run repetition request history.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + }, + { + "name": "repetitionName", + "in": "path", + "description": "The workflow repetition.", + "required": true, + "type": "string" + }, + { + "name": "requestHistoryName", + "in": "path", + "description": "The workflow repetition.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RequestHistory" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a repetition request history": { + "$ref": "./examples/WorkflowRunActionRepetitionsRequestHistories_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/scopeRepetitions": { + "get": { + "operationId": "WorkflowRunActionScopeRepetitions_List", + "tags": [ + "WorkflowRunActions" + ], + "description": "List the workflow run action scoped repetitions.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRunActionRepetitionDefinitionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List the scoped repetitions": { + "$ref": "./examples/WorkflowRunActionScopeRepetitions_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/actions/{actionName}/scopeRepetitions/{repetitionName}": { + "get": { + "operationId": "WorkflowRunActionScopeRepetitions_Get", + "tags": [ + "WorkflowRunActions" + ], + "description": "Get a workflow run action scoped repetition.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + }, + { + "name": "actionName", + "in": "path", + "description": "The workflow action name.", + "required": true, + "type": "string" + }, + { + "name": "repetitionName", + "in": "path", + "description": "The workflow repetition.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowRunActionRepetitionDefinition" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a scoped repetition": { + "$ref": "./examples/WorkflowRunActionScopeRepetitions_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runName}/cancel": { + "post": { + "operationId": "WorkflowRuns_Cancel", + "tags": [ + "WorkflowRuns" + ], + "description": "Cancels a workflow run.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "runName", + "in": "path", + "description": "The workflow run name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Cancel a workflow run": { + "$ref": "./examples/WorkflowRuns_Cancel.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers": { + "get": { + "operationId": "WorkflowTriggers_List", + "tags": [ + "WorkflowTriggers" + ], + "description": "Gets a list of workflow triggers.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "description": "The number of items to be included in the result.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "in": "query", + "description": "The filter to apply on the operation.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowTriggerListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List workflow triggers": { + "$ref": "./examples/WorkflowTriggers_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}": { + "get": { + "operationId": "WorkflowTriggers_Get", + "tags": [ + "WorkflowTriggers" + ], + "description": "Gets a workflow trigger.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "triggerName", + "in": "path", + "description": "The workflow trigger name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowTrigger" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a workflow trigger": { + "$ref": "./examples/WorkflowTriggers_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/histories": { + "get": { + "operationId": "WorkflowTriggerHistories_List", + "tags": [ + "WorkflowTriggerHistories" + ], + "description": "Gets a list of workflow trigger histories.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "triggerName", + "in": "path", + "description": "The workflow trigger name.", + "required": true, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "description": "The number of items to be included in the result.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "$filter", + "in": "query", + "description": "The filter to apply on the operation. Options for filters include: Status, StartTime, and ClientTrackingId.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowTriggerHistoryListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List a workflow trigger history": { + "$ref": "./examples/WorkflowTriggerHistories_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/histories/{historyName}": { + "get": { + "operationId": "WorkflowTriggerHistories_Get", + "tags": [ + "WorkflowTriggerHistories" + ], + "description": "Gets a workflow trigger history.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "triggerName", + "in": "path", + "description": "The workflow trigger name.", + "required": true, + "type": "string" + }, + { + "name": "historyName", + "in": "path", + "description": "The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowTriggerHistory" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a workflow trigger history": { + "$ref": "./examples/WorkflowTriggerHistories_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/histories/{historyName}/resubmit": { + "post": { + "operationId": "WorkflowTriggerHistories_Resubmit", + "tags": [ + "WorkflowTriggerHistories" + ], + "description": "Resubmits a workflow run based on the trigger history.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "triggerName", + "in": "path", + "description": "The workflow trigger name.", + "required": true, + "type": "string" + }, + { + "name": "historyName", + "in": "path", + "description": "The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.", + "required": true, + "type": "string" + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Resubmit a workflow run based on the trigger history": { + "$ref": "./examples/WorkflowTriggerHistories_Resubmit.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/listCallbackUrl": { + "post": { + "operationId": "WorkflowTriggers_ListCallbackUrl", + "tags": [ + "WorkflowTriggers" + ], + "description": "Get the callback URL for a workflow trigger.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "triggerName", + "in": "path", + "description": "The workflow trigger name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowTriggerCallbackUrl" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the callback URL for a trigger": { + "$ref": "./examples/WorkflowTriggers_ListCallbackUrl.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/run": { + "post": { + "operationId": "WorkflowTriggers_Run", + "tags": [ + "WorkflowTriggers" + ], + "description": "Runs a workflow trigger.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "triggerName", + "in": "path", + "description": "The workflow trigger name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Run a workflow trigger": { + "$ref": "./examples/WorkflowTriggers_Run.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/schemas/json": { + "get": { + "operationId": "WorkflowTriggers_GetSchemaJson", + "tags": [ + "WorkflowTriggers" + ], + "description": "Get the trigger schema as JSON.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "triggerName", + "in": "path", + "description": "The workflow trigger name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/JsonSchema" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get trigger schema": { + "$ref": "./examples/WorkflowTriggers_GetSchemaJson.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/validate": { + "post": { + "operationId": "Workflows_Validate", + "tags": [ + "Workflows" + ], + "description": "Validates the workflow definition.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "validate", + "in": "body", + "description": "The workflow.", + "required": true, + "schema": { + "$ref": "#/definitions/Workflow" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Validate a workflow": { + "$ref": "./examples/Workflows_Validate.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/versions": { + "get": { + "operationId": "WorkflowVersions_List", + "tags": [ + "WorkflowVersions" + ], + "description": "Gets a list of workflow versions.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "$top", + "in": "query", + "description": "The number of items to be included in the result.", + "required": false, + "type": "integer", + "format": "int32" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowVersionListResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "List a workflows versions": { + "$ref": "./examples/WorkflowVersions_List.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/versions/{versionId}": { + "get": { + "operationId": "WorkflowVersions_Get", + "tags": [ + "WorkflowVersions" + ], + "description": "Gets a workflow version.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "The workflow name.", + "required": true, + "type": "string" + }, + { + "name": "versionId", + "in": "path", + "description": "The workflow versionId.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowVersion" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a workflow version": { + "$ref": "./examples/WorkflowVersions_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hybridConnectionNamespaces/{namespaceName}/relays/{relayName}": { + "get": { + "operationId": "WebApps_GetHybridConnection", + "tags": [ + "WebApps" + ], + "summary": "Retrieves a specific Service Bus Hybrid Connection used by this Web App.", + "description": "Description for Retrieves a specific Service Bus Hybrid Connection used by this Web App.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateHybridConnection", + "tags": [ + "WebApps" + ], + "summary": "Creates a new Hybrid Connection using a Service Bus relay.", + "description": "Description for Creates a new Hybrid Connection using a Service Bus relay.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The details of the hybrid connection.", + "required": true, + "schema": { + "$ref": "#/definitions/HybridConnection" + } + } + ], + "responses": { + "200": { + "description": "Resource 'HybridConnection' update operation succeeded", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateHybridConnection", + "tags": [ + "WebApps" + ], + "summary": "Creates a new Hybrid Connection using a Service Bus relay.", + "description": "Description for Creates a new Hybrid Connection using a Service Bus relay.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The details of the hybrid connection.", + "required": true, + "schema": { + "$ref": "#/definitions/HybridConnection" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteHybridConnection", + "tags": [ + "WebApps" + ], + "summary": "Removes a Hybrid Connection from this site.", + "description": "Description for Removes a Hybrid Connection from this site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hybridConnectionRelays": { + "get": { + "operationId": "WebApps_ListHybridConnections", + "tags": [ + "WebApps" + ], + "summary": "Retrieves all Service Bus Hybrid Connections used by this Web App.", + "description": "Description for Retrieves all Service Bus Hybrid Connections used by this Web App.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hybridconnection": { + "get": { + "operationId": "WebApps_ListRelayServiceConnections", + "tags": [ + "WebApps" + ], + "summary": "Gets hybrid connections configured for an app (or deployment slot, if specified).", + "description": "Description for Gets hybrid connections configured for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hybridconnection/{entityName}": { + "get": { + "operationId": "WebApps_GetRelayServiceConnection", + "tags": [ + "WebApps" + ], + "summary": "Gets a hybrid connection configuration by its name.", + "description": "Description for Gets a hybrid connection configuration by its name.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateRelayServiceConnection", + "tags": [ + "WebApps" + ], + "summary": "Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "description": "Description for Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Details of the hybrid connection configuration.", + "required": true, + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + } + ], + "responses": { + "200": { + "description": "Resource 'RelayServiceConnectionEntity' update operation succeeded", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateRelayServiceConnection", + "tags": [ + "WebApps" + ], + "summary": "Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "description": "Description for Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Details of the hybrid connection configuration.", + "required": true, + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteRelayServiceConnection", + "tags": [ + "WebApps" + ], + "summary": "Deletes a relay service connection by its name.", + "description": "Description for Deletes a relay service connection by its name.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances": { + "get": { + "operationId": "WebApps_ListInstanceIdentifiers", + "tags": [ + "WebApps" + ], + "summary": "Gets all scale-out instances of an app.", + "description": "Description for Gets all scale-out instances of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppInstanceStatusCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}": { + "get": { + "operationId": "WebApps_GetInstanceInfo", + "tags": [ + "WebApps" + ], + "summary": "Gets all scale-out instances of an app.", + "description": "Description for Gets all scale-out instances of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebSiteInstanceStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get site instance info": { + "$ref": "./examples/GetSiteInstanceInfo.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/extensions/MSDeploy": { + "get": { + "operationId": "WebApps_GetInstanceMsDeployStatus", + "tags": [ + "WebApps" + ], + "summary": "Get the status of the last MSDeploy operation.", + "description": "Description for Get the status of the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of web app instance.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateInstanceMSDeployOperation", + "tags": [ + "WebApps" + ], + "summary": "Invoke the MSDeploy web app extension.", + "description": "Description for Invoke the MSDeploy web app extension.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of web app instance.", + "required": true, + "type": "string" + }, + { + "name": "MSDeploy", + "in": "body", + "description": "Details of MSDeploy operation", + "required": true, + "schema": { + "$ref": "#/definitions/MSDeploy" + } + } + ], + "responses": { + "201": { + "description": "Resource 'MSDeployStatus' create operation succeeded", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "409": { + "description": "The request conflicts with the current state of the server.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/MSDeployStatus" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/extensions/MSDeploy/log": { + "get": { + "operationId": "WebApps_GetInstanceMSDeployLog", + "tags": [ + "WebApps" + ], + "summary": "Get the MSDeploy Log for the last MSDeploy operation.", + "description": "Description for Get the MSDeploy Log for the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of web app instance.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployLog" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/processes": { + "get": { + "operationId": "WebApps_ListInstanceProcesses", + "tags": [ + "WebApps" + ], + "summary": "Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "description": "Description for Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/processes/{processId}": { + "get": { + "operationId": "WebApps_GetInstanceProcess", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteInstanceProcess", + "tags": [ + "WebApps" + ], + "summary": "Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "description": "Description for Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/processes/{processId}/dump": { + "get": { + "operationId": "WebApps_GetInstanceProcessDump", + "tags": [ + "WebApps" + ], + "summary": "Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "produces": [ + "*/*", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/processes/{processId}/modules": { + "get": { + "operationId": "WebApps_ListInstanceProcessModules", + "tags": [ + "WebApps" + ], + "summary": "List module information for a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List module information for a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/processes/{processId}/modules/{baseAddress}": { + "get": { + "operationId": "WebApps_GetInstanceProcessModule", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + }, + { + "name": "baseAddress", + "in": "path", + "description": "Module base address.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/instances/{instanceId}/processes/{processId}/threads": { + "get": { + "operationId": "WebApps_ListInstanceProcessThreads", + "tags": [ + "WebApps" + ], + "summary": "List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessThreadInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/iscloneable": { + "post": { + "operationId": "WebApps_IsCloneable", + "tags": [ + "WebApps" + ], + "summary": "Shows whether an app can be cloned to another resource group or subscription.", + "description": "Description for Shows whether an app can be cloned to another resource group or subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteCloneability" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/lastKnownGood/{lkgName}": { + "get": { + "operationId": "LastKnownGoods_GetLastKnownGood", + "tags": [ + "WebApps" + ], + "summary": "Get the current Last Known Good revision for a web app.", + "description": "Get the current Last Known Good revision for a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "lkgName", + "in": "path", + "description": "Name of the Last Known Good resource. Must be \"default\".", + "required": true, + "type": "string", + "pattern": "^default$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/LastKnownGoodResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/lastKnownGood/{lkgName}/mark": { + "post": { + "operationId": "LastKnownGoods_MarkLastKnownGood", + "tags": [ + "WebApps" + ], + "summary": "Mark the current site state as Last Known Good.", + "description": "Mark the current site state as Last Known Good.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "lkgName", + "in": "path", + "description": "Name of the Last Known Good resource. Must be \"default\".", + "required": true, + "type": "string", + "pattern": "^default$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/LastKnownGoodResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/listWorkflowsConnections": { + "post": { + "operationId": "WebApps_ListWorkflowsConnections", + "tags": [ + "WebApps" + ], + "summary": "Lists logic app's connections for web site, or a deployment slot.", + "description": "Lists logic app's connections for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowEnvelope" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List the Instance Workflows Configuration Connections": { + "$ref": "./examples/ListWorkflowsConfigurationConnections.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/listbackups": { + "post": { + "operationId": "WebApps_ListSiteBackups", + "tags": [ + "WebApps" + ], + "summary": "Gets existing backups of an app.", + "description": "Description for Gets existing backups of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItemCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List backups": { + "$ref": "./examples/ListSlotBackups.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/listsyncfunctiontriggerstatus": { + "post": { + "operationId": "WebApps_ListSyncFunctionTriggers", + "tags": [ + "WebApps" + ], + "summary": "This is to allow calling via powershell and ARM template.", + "description": "Description for This is to allow calling via powershell and ARM template.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionSecrets" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/managedTrafficConfig/{configName}": { + "get": { + "operationId": "ManagedTrafficConfigs_GetManagedTrafficConfig", + "tags": [ + "WebApps" + ], + "summary": "Get the managed traffic configuration for a web app.", + "description": "Get the managed traffic configuration for a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "configName", + "in": "path", + "description": "Name of the managed traffic configuration. Must be \"default\".", + "required": true, + "type": "string", + "pattern": "^default$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ManagedTrafficConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get managed traffic configuration": { + "$ref": "./examples/GetManagedTrafficConfig.json" + } + } + }, + "put": { + "operationId": "ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig", + "tags": [ + "WebApps" + ], + "summary": "Create or update the managed traffic configuration for a web app.", + "description": "Create or update the managed traffic configuration for a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "configName", + "in": "path", + "description": "Name of the managed traffic configuration. Must be \"default\".", + "required": true, + "type": "string", + "pattern": "^default$" + }, + { + "name": "resource", + "in": "body", + "description": "Traffic configuration properties.", + "required": true, + "schema": { + "$ref": "#/definitions/ManagedTrafficConfigResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'ManagedTrafficConfigResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/ManagedTrafficConfigResource" + } + }, + "201": { + "description": "Resource 'ManagedTrafficConfigResource' create operation succeeded", + "schema": { + "$ref": "#/definitions/ManagedTrafficConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update managed traffic configuration": { + "$ref": "./examples/CreateOrUpdateManagedTrafficConfig.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/migrate": { + "put": { + "operationId": "WebApps_MigrateStorage", + "tags": [ + "WebApps" + ], + "summary": "Restores a web app.", + "description": "Description for Restores a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "subscriptionName", + "in": "query", + "description": "Azure subscription", + "required": true, + "type": "string" + }, + { + "name": "migrationOptions", + "in": "body", + "description": "Migration migrationOptions.", + "required": true, + "schema": { + "$ref": "#/definitions/StorageMigrationOptions" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/StorageMigrationResponse" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/StorageMigrationResponse" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/migratemysql": { + "post": { + "operationId": "WebApps_MigrateMySql", + "tags": [ + "WebApps" + ], + "summary": "Migrates a local (in-app) MySql database to a remote MySql database.", + "description": "Description for Migrates a local (in-app) MySql database to a remote MySql database.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "migrationRequestEnvelope", + "in": "body", + "description": "MySql migration options.", + "required": true, + "schema": { + "$ref": "#/definitions/MigrateMySqlRequest" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/Operation" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/Operation" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/migratemysql/status": { + "get": { + "operationId": "WebApps_GetMigrateMySqlStatus", + "tags": [ + "WebApps" + ], + "summary": "Returns the status of MySql in app migration, if one is active, and whether or not MySql in app is enabled", + "description": "Description for Returns the status of MySql in app migration, if one is active, and whether or not MySql in app is enabled", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MigrateMySqlStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/networkConfig/virtualNetwork": { + "get": { + "operationId": "WebApps_GetSwiftVirtualNetworkConnection", + "tags": [ + "WebApps" + ], + "summary": "Gets a Swift Virtual Network connection.", + "description": "Description for Gets a Swift Virtual Network connection.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateSwiftVirtualNetworkConnectionWithCheck", + "tags": [ + "WebApps" + ], + "summary": "Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\r\nin use by another App Service Plan other than the one this App is in.", + "description": "Description for Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\nin use by another App Service Plan other than the one this App is in.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SwiftVirtualNetwork' update operation succeeded", + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateSwiftVirtualNetworkConnectionWithCheck", + "tags": [ + "WebApps" + ], + "summary": "Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\r\nin use by another App Service Plan other than the one this App is in.", + "description": "Description for Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\nin use by another App Service Plan other than the one this App is in.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteSwiftVirtualNetwork", + "tags": [ + "WebApps" + ], + "summary": "Deletes a Swift Virtual Network connection from an app (or deployment slot).", + "description": "Description for Deletes a Swift Virtual Network connection from an app (or deployment slot).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/networkFeatures/{view}": { + "get": { + "operationId": "WebApps_ListNetworkFeatures", + "tags": [ + "WebApps" + ], + "summary": "Gets all network features used by the app (or deployment slot, if specified).", + "description": "Description for Gets all network features used by the app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "view", + "in": "path", + "description": "The type of view. Only \"summary\" is supported at this time.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/NetworkFeatures" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/networkTrace/start": { + "post": { + "operationId": "WebApps_StartWebSiteNetworkTrace", + "tags": [ + "WebApps" + ], + "summary": "Start capturing network packets for the site (To be deprecated).", + "description": "Description for Start capturing network packets for the site (To be deprecated).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "durationInSeconds", + "in": "query", + "description": "The duration to keep capturing in seconds.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "maxFrameLength", + "in": "query", + "description": "The maximum frame length in bytes (Optional).", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "sasUrl", + "in": "query", + "description": "The Blob URL to store capture file.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/stringApplicationJson" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/networkTrace/startOperation": { + "post": { + "operationId": "WebApps_StartWebSiteNetworkTraceOperation", + "tags": [ + "WebApps" + ], + "summary": "Start capturing network packets for the site.", + "description": "Description for Start capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "durationInSeconds", + "in": "query", + "description": "The duration to keep capturing in seconds.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "maxFrameLength", + "in": "query", + "description": "The maximum frame length in bytes (Optional).", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "sasUrl", + "in": "query", + "description": "The Blob URL to store capture file.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Start a new network trace operation for a site": { + "$ref": "./examples/StartWebSiteNetworkTraceOperation.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/networkTrace/stop": { + "post": { + "operationId": "WebApps_StopWebSiteNetworkTrace", + "tags": [ + "WebApps" + ], + "summary": "Stop ongoing capturing network packets for the site.", + "description": "Description for Stop ongoing capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Stop a currently running network trace operation for a site": { + "$ref": "./examples/StopWebSiteNetworkTrace.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/newpassword": { + "post": { + "operationId": "WebApps_GenerateNewSitePublishingPassword", + "tags": [ + "WebApps" + ], + "summary": "Generates a new publishing password for an app (or deployment slot, if specified).", + "description": "Description for Generates a new publishing password for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/perfcounters": { + "get": { + "operationId": "WebApps_ListPerfMonCounters", + "tags": [ + "WebApps" + ], + "summary": "Gets perfmon counters for web app.", + "description": "Description for Gets perfmon counters for web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only usages/metrics specified in the filter. Filter conforms to odata syntax. Example: $filter=(startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[Hour|Minute|Day]'.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PerfMonCounterCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/phplogging": { + "get": { + "operationId": "WebApps_GetSitePhpErrorLogFlag", + "tags": [ + "WebApps" + ], + "summary": "Gets web app's event logs.", + "description": "Description for Gets web app's event logs.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SitePhpErrorLogFlag" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/premieraddons": { + "get": { + "operationId": "WebApps_ListPremierAddOns", + "tags": [ + "WebApps" + ], + "summary": "Gets the premier add-ons of an app.", + "description": "Description for Gets the premier add-ons of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/premieraddons/{premierAddOnName}": { + "get": { + "operationId": "WebApps_GetPremierAddOn", + "tags": [ + "WebApps" + ], + "summary": "Gets a named add-on of an app.", + "description": "Description for Gets a named add-on of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_AddPremierAddOn", + "tags": [ + "WebApps" + ], + "summary": "Updates a named add-on of an app.", + "description": "Description for Updates a named add-on of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOn", + "in": "body", + "description": "A JSON representation of the edited premier add-on.", + "required": true, + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + } + ], + "responses": { + "200": { + "description": "Resource 'PremierAddOn' update operation succeeded", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdatePremierAddOn", + "tags": [ + "WebApps" + ], + "summary": "Updates a named add-on of an app.", + "description": "Description for Updates a named add-on of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOn", + "in": "body", + "description": "A JSON representation of the edited premier add-on.", + "required": true, + "schema": { + "$ref": "#/definitions/PremierAddOnPatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeletePremierAddOn", + "tags": [ + "WebApps" + ], + "summary": "Delete a premier add-on from an app.", + "description": "Description for Delete a premier add-on from an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/privateAccess/virtualNetworks": { + "get": { + "operationId": "WebApps_GetPrivateAccess", + "tags": [ + "WebApps" + ], + "summary": "Gets data around private site access enablement and authorized Virtual Networks that can access the site.", + "description": "Description for Gets data around private site access enablement and authorized Virtual Networks that can access the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateAccess" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_PutPrivateAccessVnet", + "tags": [ + "WebApps" + ], + "summary": "Sets data around private site access enablement and authorized Virtual Networks that can access the site.", + "description": "Description for Sets data around private site access enablement and authorized Virtual Networks that can access the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "access", + "in": "body", + "description": "The information for the private access", + "required": true, + "schema": { + "$ref": "#/definitions/PrivateAccess" + } + } + ], + "responses": { + "200": { + "description": "Resource 'PrivateAccess' update operation succeeded", + "schema": { + "$ref": "#/definitions/PrivateAccess" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/privateEndpointConnections": { + "get": { + "operationId": "WebApps_GetPrivateEndpointConnectionList", + "tags": [ + "WebApps" + ], + "summary": "Gets the list of private endpoint connections associated with a site", + "description": "Description for Gets the list of private endpoint connections associated with a site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateEndpointConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/privateEndpointConnections/{privateEndpointConnectionName}": { + "get": { + "operationId": "WebApps_GetPrivateEndpointConnection", + "tags": [ + "WebApps" + ], + "summary": "Gets a private endpoint connection", + "description": "Description for Gets a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a private endpoint connection for a site.": { + "$ref": "./examples/GetSitePrivateEndpointConnection.json" + } + } + }, + "put": { + "operationId": "WebApps_ApproveOrRejectPrivateEndpointConnection", + "tags": [ + "WebApps" + ], + "summary": "Approves or rejects a private endpoint connection", + "description": "Description for Approves or rejects a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointWrapper", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'RemotePrivateEndpointConnectionARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Approves or rejects a private endpoint connection for a site.": { + "$ref": "./examples/ApproveRejectSitePrivateEndpointConnection.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "WebApps_DeletePrivateEndpointConnection", + "tags": [ + "WebApps" + ], + "summary": "Deletes a private endpoint connection", + "description": "Description for Deletes a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": {}, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful. ", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a private endpoint connection for a site.": { + "$ref": "./examples/DeleteSitePrivateEndpointConnection.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/privateLinkResources": { + "get": { + "operationId": "WebApps_GetPrivateLinkResources", + "tags": [ + "WebApps" + ], + "summary": "Gets the private link resources", + "description": "Description for Gets the private link resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateLinkResourcesWrapper" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get private link resources of a site": { + "$ref": "./examples/GetSitePrivateLinkResources_WebApps.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/processes": { + "get": { + "operationId": "WebApps_ListProcesses", + "tags": [ + "WebApps" + ], + "summary": "Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "description": "Description for Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/processes/{processId}": { + "get": { + "operationId": "WebApps_GetProcess", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteProcess", + "tags": [ + "WebApps" + ], + "summary": "Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "description": "Description for Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/processes/{processId}/dump": { + "get": { + "operationId": "WebApps_GetProcessDump", + "tags": [ + "WebApps" + ], + "summary": "Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "produces": [ + "*/*", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/processes/{processId}/modules": { + "get": { + "operationId": "WebApps_ListProcessModules", + "tags": [ + "WebApps" + ], + "summary": "List module information for a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List module information for a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/processes/{processId}/modules/{baseAddress}": { + "get": { + "operationId": "WebApps_GetProcessModule", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + }, + { + "name": "baseAddress", + "in": "path", + "description": "Module base address.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/processes/{processId}/threads": { + "get": { + "operationId": "WebApps_ListProcessThreads", + "tags": [ + "WebApps" + ], + "summary": "List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessThreadInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/publicCertificates": { + "get": { + "operationId": "WebApps_ListPublicCertificates", + "tags": [ + "WebApps" + ], + "summary": "Get public certificates for an app or a deployment slot.", + "description": "Description for Get public certificates for an app or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PublicCertificateCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/publicCertificates/{publicCertificateName}": { + "get": { + "operationId": "WebApps_GetPublicCertificate", + "tags": [ + "WebApps" + ], + "summary": "Get the named public certificate for an app (or deployment slot, if specified).", + "description": "Description for Get the named public certificate for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificateName", + "in": "path", + "description": "Public certificate name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PublicCertificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdatePublicCertificate", + "tags": [ + "WebApps" + ], + "summary": "Creates a hostname binding for an app.", + "description": "Description for Creates a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificateName", + "in": "path", + "description": "Public certificate name.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificate", + "in": "body", + "description": "Public certificate details. This is the JSON representation of a PublicCertificate object.", + "required": true, + "schema": { + "$ref": "#/definitions/PublicCertificate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'PublicCertificate' update operation succeeded", + "schema": { + "$ref": "#/definitions/PublicCertificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeletePublicCertificate", + "tags": [ + "WebApps" + ], + "summary": "Deletes a hostname binding for an app.", + "description": "Description for Deletes a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificateName", + "in": "path", + "description": "Public certificate name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/publishxml": { + "post": { + "operationId": "WebApps_ListPublishingProfileXmlWithSecrets", + "tags": [ + "WebApps" + ], + "summary": "Gets the publishing profile for an app (or deployment slot, if specified).", + "description": "Description for Gets the publishing profile for an app (or deployment slot, if specified).", + "produces": [ + "application/xml", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "publishingProfileOptions", + "in": "body", + "description": "Specifies publishingProfileOptions for publishing profile. For example, use {\" format\": \"FileZilla3\"} to get a FileZilla publishing profile.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmPublishingProfileOptions" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/recommendationHistory": { + "get": { + "operationId": "Recommendations_ListHistoryForWebApp", + "tags": [ + "Recommendations" + ], + "summary": "Get past recommendations for an app, optionally specified by the time range.", + "description": "Description for Get past recommendations for an app, optionally specified by the time range.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "expiredOnly", + "in": "query", + "description": "Specify false to return all recommendations. The default is true, which returns only expired recommendations.", + "required": false, + "type": "boolean" + }, + { + "name": "$filter", + "in": "query", + "description": "Filter is specified by using OData syntax. Example: $filter=channel eq 'Api' or channel eq 'Notification' and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[PT1H|PT1M|P1D]", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RecommendationCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/recommendations": { + "get": { + "operationId": "Recommendations_ListRecommendedRulesForWebApp", + "tags": [ + "Recommendations" + ], + "summary": "Get all recommendations for an app.", + "description": "Description for Get all recommendations for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "featured", + "in": "query", + "description": "Specify true to return only the most critical recommendations. The default is false, which returns all recommendations.", + "required": false, + "type": "boolean" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only channels specified in the filter. Filter is specified by using OData syntax. Example: $filter=channel eq 'Api' or channel eq 'Notification'", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RecommendationCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/recommendations/{name}": { + "get": { + "operationId": "Recommendations_GetRuleDetailsByWebApp", + "tags": [ + "Recommendations" + ], + "summary": "Get a recommendation rule for an app.", + "description": "Description for Get a recommendation rule for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "name", + "in": "path", + "description": "Name of the recommendation.", + "required": true, + "type": "string" + }, + { + "name": "updateSeen", + "in": "query", + "description": "Specify true to update the last-seen timestamp of the recommendation object.", + "required": false, + "type": "boolean" + }, + { + "name": "recommendationId", + "in": "query", + "description": "The GUID of the recommendation object if you query an expired one. You don't need to specify it to query an active entry.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RecommendationRule" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/recommendations/{name}/disable": { + "post": { + "operationId": "Recommendations_DisableRecommendationForSite", + "tags": [ + "Recommendations" + ], + "summary": "Disables the specific rule for a web site permanently.", + "description": "Description for Disables the specific rule for a web site permanently.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "name", + "in": "path", + "description": "Name of the recommendation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/recommendations/disable": { + "post": { + "operationId": "Recommendations_DisableAllForWebApp", + "tags": [ + "Recommendations" + ], + "summary": "Disable all recommendations for an app.", + "description": "Description for Disable all recommendations for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/recommendations/reset": { + "post": { + "operationId": "Recommendations_ResetAllFiltersForWebApp", + "tags": [ + "Recommendations" + ], + "summary": "Reset all recommendation opt-out settings for an app.", + "description": "Description for Reset all recommendation opt-out settings for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/resetSlotConfig": { + "post": { + "operationId": "WebApps_ResetProductionSlotConfig", + "tags": [ + "WebApps" + ], + "summary": "Resets the configuration settings of the current slot if they were previously modified by calling the API with POST.", + "description": "Description for Resets the configuration settings of the current slot if they were previously modified by calling the API with POST.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/resourceHealthMetadata": { + "get": { + "operationId": "ResourceHealthMetadata_ListBySite", + "tags": [ + "ResourceHealthMetadata" + ], + "summary": "Gets the category of ResourceHealthMetadata to use for the given site as a collection", + "description": "Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceHealthMetadataCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List ResourceHealthMetadata for a site": { + "$ref": "./examples/ListResourceHealthMetadataBySite.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/resourceHealthMetadata/default": { + "get": { + "operationId": "ResourceHealthMetadata_GetBySite", + "tags": [ + "ResourceHealthMetadata" + ], + "summary": "Gets the category of ResourceHealthMetadata to use for the given site", + "description": "Description for Gets the category of ResourceHealthMetadata to use for the given site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceHealthMetadata" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get ResourceHealthMetadata": { + "$ref": "./examples/GetResourceHealthMetadataBySite.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/restart": { + "post": { + "operationId": "WebApps_Restart", + "tags": [ + "WebApps" + ], + "summary": "Restarts an app (or deployment slot, if specified).", + "description": "Description for Restarts an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "softRestart", + "in": "query", + "description": "Specify true to apply the configuration settings and restarts the app only if necessary. By default, the API always restarts and reprovisions the app.", + "required": false, + "type": "boolean" + }, + { + "name": "synchronous", + "in": "query", + "description": "Specify true to block until the app is restarted. By default, it is set to false, and the API responds immediately (asynchronous).", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/restoreFromBackupBlob": { + "post": { + "operationId": "WebApps_RestoreFromBackupBlob", + "tags": [ + "WebApps" + ], + "summary": "Restores an app from a backup blob in Azure Storage.", + "description": "Description for Restores an app from a backup blob in Azure Storage.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Information on restore request .", + "required": true, + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/restoreFromDeletedApp": { + "post": { + "operationId": "WebApps_RestoreFromDeletedApp", + "tags": [ + "WebApps" + ], + "summary": "Restores a deleted web app to this web app.", + "description": "Description for Restores a deleted web app to this web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "restoreRequest", + "in": "body", + "description": "Deleted web app restore information.", + "required": true, + "schema": { + "$ref": "#/definitions/DeletedAppRestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/restoreSnapshot": { + "post": { + "operationId": "WebApps_RestoreSnapshot", + "tags": [ + "WebApps" + ], + "summary": "Restores a web app from a snapshot.", + "description": "Description for Restores a web app from a snapshot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "restoreRequest", + "in": "body", + "description": "Snapshot restore settings. Snapshot information can be obtained by calling GetDeletedSites or GetSiteSnapshots API.", + "required": true, + "schema": { + "$ref": "#/definitions/SnapshotRestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/silos": { + "get": { + "operationId": "SiteSilos_ListSiteSilos", + "tags": [ + "WebApps" + ], + "summary": "Get all silos for a web app.", + "description": "Get all silos for a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteSiloCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List site silos": { + "$ref": "./examples/ListSiteSilos.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/silos/{siloName}": { + "get": { + "operationId": "SiteSilos_GetSiteSilo", + "tags": [ + "WebApps" + ], + "summary": "Get a specific silo for a web app.", + "description": "Get a specific silo for a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siloName", + "in": "path", + "description": "Name of the silo.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteSilo" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get site silo": { + "$ref": "./examples/GetSiteSilo.json" + } + } + }, + "put": { + "operationId": "SiteSilos_CreateOrUpdateSiteSilo", + "tags": [ + "WebApps" + ], + "summary": "Create or update a web app silo.", + "description": "Create or update a web app silo.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siloName", + "in": "path", + "description": "Name of the silo.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + }, + { + "name": "resource", + "in": "body", + "description": "Details of the silo.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteSilo" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteSilo' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSilo" + } + }, + "201": { + "description": "Resource 'SiteSilo' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSilo" + }, + "headers": { + "Azure-AsyncOperation": { + "type": "string", + "description": "A link to the status monitor" + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update site silo": { + "$ref": "./examples/CreateOrUpdateSiteSilo.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "azure-async-operation", + "final-state-schema": "#/definitions/SiteSilo" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "SiteSilos_DeleteSiteSilo", + "tags": [ + "WebApps" + ], + "summary": "Delete a web app silo.", + "description": "Delete a web app silo.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siloName", + "in": "path", + "description": "Name of the silo.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$" + } + ], + "responses": { + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete site silo": { + "$ref": "./examples/DeleteSiteSilo.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/sitecontainers": { + "get": { + "operationId": "WebApps_ListSiteContainers", + "tags": [ + "WebApps" + ], + "summary": "Lists all the site containers of a site, or a deployment slot.", + "description": "Lists all the site containers of a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteContainerCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/sitecontainers/{containerName}": { + "get": { + "operationId": "WebApps_GetSiteContainer", + "tags": [ + "WebApps" + ], + "summary": "Gets a site container of a site, or a deployment slot.", + "description": "Gets a site container of a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "containerName", + "in": "path", + "description": "Site Container Name", + "required": true, + "type": "string", + "pattern": "(^[a-zA-Z0-9]$)|(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteContainer" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateSiteContainer", + "tags": [ + "WebApps" + ], + "summary": "Creates or Updates a site container for a site, or a deployment slot.", + "description": "Creates or Updates a site container for a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "containerName", + "in": "path", + "description": "Site Container Name", + "required": true, + "type": "string", + "pattern": "(^[a-zA-Z0-9]$)|(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)" + }, + { + "name": "request", + "in": "body", + "description": "Container Entity", + "required": true, + "schema": { + "$ref": "#/definitions/SiteContainer" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteContainer' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteContainer" + } + }, + "201": { + "description": "Resource 'SiteContainer' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteContainer" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteSiteContainer", + "tags": [ + "WebApps" + ], + "summary": "Deletes a site container for a site, or a deployment slot.", + "description": "Deletes a site container for a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "containerName", + "in": "path", + "description": "Site Container Name", + "required": true, + "type": "string", + "pattern": "(^[a-zA-Z0-9]$)|(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/siteextensions": { + "get": { + "operationId": "WebApps_ListSiteExtensions", + "tags": [ + "WebApps" + ], + "summary": "Get list of siteextensions for a web site, or a deployment slot.", + "description": "Description for Get list of siteextensions for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteExtensionInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/siteextensions/{siteExtensionId}": { + "get": { + "operationId": "WebApps_GetSiteExtension", + "tags": [ + "WebApps" + ], + "summary": "Get site extension information by its ID for a web site, or a deployment slot.", + "description": "Description for Get site extension information by its ID for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "siteExtensionId", + "in": "path", + "description": "Site extension name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteExtensionInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_InstallSiteExtension", + "tags": [ + "WebApps" + ], + "summary": "Install site extension on a web site, or a deployment slot.", + "description": "Description for Install site extension on a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "siteExtensionId", + "in": "path", + "description": "Site extension name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteExtensionInfo" + } + }, + "201": { + "description": "Resource 'SiteExtensionInfo' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteExtensionInfo" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "429": { + "description": "Client error", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/SiteExtensionInfo" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "WebApps_DeleteSiteExtension", + "tags": [ + "WebApps" + ], + "summary": "Remove a site extension from a web site, or a deployment slot.", + "description": "Description for Remove a site extension from a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "siteExtensionId", + "in": "path", + "description": "Site extension name.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots": { + "get": { + "operationId": "WebApps_ListSlots", + "tags": [ + "WebApps" + ], + "summary": "Gets an app's deployment slots.", + "description": "Description for Gets an app's deployment slots.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Web App Slots": { + "$ref": "./examples/ListWebAppSlots.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}": { + "get": { + "operationId": "WebApps_GetSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the details of a web, mobile, or API app.", + "description": "Description for Gets the details of a web, mobile, or API app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Web App Slot": { + "$ref": "./examples/GetWebAppSlot.json" + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "description": "Description for Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteEnvelope", + "in": "body", + "description": "A JSON representation of the app properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/Site" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Site' update operation succeeded", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/Site" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Clone web app slot": { + "$ref": "./examples/CloneWebAppSlot.json" + }, + "Create or Update Web App Slot": { + "$ref": "./examples/CreateOrUpdateWebAppSlot.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/Site" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "WebApps_UpdateSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "description": "Description for Creates a new web, mobile, or API app in an existing resource group, or updates an existing app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteEnvelope", + "in": "body", + "description": "A JSON representation of the app properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SitePatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/Site" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update Web App Slot": { + "$ref": "./examples/UpdateWebAppSlot.json" + } + } + }, + "delete": { + "operationId": "WebApps_DeleteSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a web, mobile, or API app, or one of the deployment slots.", + "description": "Description for Deletes a web, mobile, or API app, or one of the deployment slots.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "deleteMetrics", + "in": "query", + "description": "If true, web app metrics are also deleted.", + "required": false, + "type": "boolean" + }, + { + "name": "deleteEmptyServerFarm", + "in": "query", + "description": "Specify false if you want to keep empty App Service plan. By default, empty App Service plan is deleted.", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "The request has succeeded." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete Web App Slot": { + "$ref": "./examples/DeleteWebAppSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/analyzeCustomHostname": { + "get": { + "operationId": "WebApps_AnalyzeCustomHostnameSlot", + "tags": [ + "WebApps" + ], + "summary": "Analyze a custom hostname.", + "description": "Description for Analyze a custom hostname.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "query", + "description": "Custom hostname.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CustomHostnameAnalysisResult" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Analyze custom hostname for slot": { + "$ref": "./examples/AnalyzeCustomHostNameSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/applySlotConfig": { + "post": { + "operationId": "WebApps_ApplySlotConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Applies the configuration settings from the target slot onto the current slot.", + "description": "Description for Applies the configuration settings from the target slot onto the current slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "slotSwapEntity", + "in": "body", + "description": "JSON object that contains the target slot name. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmSlotEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/backup": { + "post": { + "operationId": "WebApps_BackupSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a backup of an app.", + "description": "Description for Creates a backup of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Backup configuration. You can use the JSON response from the POST action as input here.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItem" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/backups": { + "get": { + "operationId": "WebApps_ListBackupsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets existing backups of an app.", + "description": "Description for Gets existing backups of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a backup of the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItemCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/backups/{backupId}": { + "get": { + "operationId": "WebApps_GetBackupStatusSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a backup of an app by its ID.", + "description": "Description for Gets a backup of an app by its ID.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a backup of the production slot.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItem" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteBackupSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a backup of an app by its ID.", + "description": "Description for Deletes a backup of an app by its ID.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a backup of the production slot.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/backups/{backupId}/list": { + "post": { + "operationId": "WebApps_ListBackupStatusSecretsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets status of a web app backup that may be in progress, including secrets associated with the backup, such as the Azure Storage SAS URL. Also can be used to update the SAS URL for the backup if a new URL is passed in the request body.", + "description": "Description for Gets status of a web app backup that may be in progress, including secrets associated with the backup, such as the Azure Storage SAS URL. Also can be used to update the SAS URL for the backup if a new URL is passed in the request body.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a backup of the production slot.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Information on backup request.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItem" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/backups/{backupId}/restore": { + "post": { + "operationId": "WebApps_RestoreSlot", + "tags": [ + "WebApps" + ], + "summary": "Restores a specific backup to another app (or deployment slot, if specified).", + "description": "Description for Restores a specific backup to another app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a backup of the production slot.", + "required": true, + "type": "string" + }, + { + "name": "backupId", + "in": "path", + "description": "ID of the backup.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Information on restore request .", + "required": true, + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/basicPublishingCredentialsPolicies": { + "get": { + "operationId": "WebApps_ListBasicPublishingCredentialsPoliciesSlot", + "tags": [ + "WebApps" + ], + "summary": "Returns whether Scm basic auth is allowed and whether Ftp is allowed for a given site.", + "description": "Description for Returns whether Scm basic auth is allowed and whether Ftp is allowed for a given site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PublishingCredentialsPoliciesCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Publishing Credentials Policies": { + "$ref": "./examples/ListPublishingCredentialsPoliciesSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/basicPublishingCredentialsPolicies/ftp": { + "get": { + "operationId": "WebApps_GetFtpAllowedSlot", + "tags": [ + "WebApps" + ], + "summary": "Returns whether FTP is allowed on the site or not.", + "description": "Description for Returns whether FTP is allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get FTP Allowed": { + "$ref": "./examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json" + } + } + }, + "put": { + "operationId": "WebApps_UpdateFtpAllowedSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates whether FTP is allowed on the site or not.", + "description": "Description for Updates whether FTP is allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "csmPublishingAccessPoliciesEntity", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + } + ], + "responses": { + "200": { + "description": "Resource 'CsmPublishingCredentialsPoliciesEntity' update operation succeeded", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update FTP Allowed": { + "$ref": "./examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/basicPublishingCredentialsPolicies/scm": { + "get": { + "operationId": "WebApps_GetScmAllowedSlot", + "tags": [ + "WebApps" + ], + "summary": "Returns whether Scm basic auth is allowed on the site or not.", + "description": "Description for Returns whether Scm basic auth is allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get SCM Allowed": { + "$ref": "./examples/GetPublishingCredentialsPolicySlot.json" + } + } + }, + "put": { + "operationId": "WebApps_UpdateScmAllowedSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates whether user publishing credentials are allowed on the site or not.", + "description": "Description for Updates whether user publishing credentials are allowed on the site or not.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "csmPublishingAccessPoliciesEntity", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + } + ], + "responses": { + "200": { + "description": "Resource 'CsmPublishingCredentialsPoliciesEntity' update operation succeeded", + "schema": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Update SCM Allowed": { + "$ref": "./examples/UpdatePublishingCredentialsPolicySlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/certificates": { + "get": { + "operationId": "SiteCertificates_ListSlot", + "tags": [ + "SiteCertificates" + ], + "summary": "Get all certificates in a resource group for a given site and a deployment slot.", + "description": "Get all certificates in a resource group for a given site and a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will create a binding for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CertificateCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Certificates by resource group for a slot": { + "$ref": "./examples/ListSiteCertificatesByResourceGroupSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/certificates/{certificateName}": { + "get": { + "operationId": "SiteCertificates_GetSlot", + "tags": [ + "SiteCertificates" + ], + "summary": "Get a certificate for a given site and deployment slot.", + "description": "Get a certificate for a given site and deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will create a binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Site Certificate for a slot": { + "$ref": "./examples/GetSiteCertificateSlot.json" + } + } + }, + "put": { + "operationId": "SiteCertificates_CreateOrUpdateSlot", + "tags": [ + "SiteCertificates" + ], + "summary": "Create or update a certificate in a given site and deployment slot.", + "description": "Create or update a certificate in a given site and deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will create a binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateEnvelope", + "in": "body", + "description": "Details of certificate, if it exists already.", + "required": true, + "schema": { + "$ref": "#/definitions/Certificate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Certificate' update operation succeeded", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "201": { + "description": "Resource 'Certificate' create operation succeeded", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create Or Update Certificate for slot": { + "$ref": "./examples/CreateOrUpdateSiteCertificateSlot.json" + } + } + }, + "patch": { + "operationId": "SiteCertificates_UpdateSlot", + "tags": [ + "SiteCertificates" + ], + "summary": "Create or update a certificate for a site and deployment slot.", + "description": "Create or update a certificate for a site and deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will create a binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "certificateEnvelope", + "in": "body", + "description": "Details of certificate, if it exists already.", + "required": true, + "schema": { + "$ref": "#/definitions/CertificatePatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Certificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Patch Certificate for slot": { + "$ref": "./examples/PatchSiteCertificateSlot.json" + } + } + }, + "delete": { + "operationId": "SiteCertificates_DeleteSlot", + "tags": [ + "SiteCertificates" + ], + "summary": "Delete a certificate for a given site and deployment slot.", + "description": "Delete a certificate for a given site and deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will create a binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "certificateName", + "in": "path", + "description": "Name of the certificate.", + "required": true, + "type": "string", + "pattern": "^[A-z][A-z0-9]*$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete Certificate for slot": { + "$ref": "./examples/DeleteSiteCertificateSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config": { + "get": { + "operationId": "WebApps_ListConfigurationsSlot", + "tags": [ + "WebApps" + ], + "summary": "List the configurations of an app", + "description": "Description for List the configurations of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will return configuration for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResourceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/appsettings": { + "put": { + "operationId": "WebApps_UpdateApplicationSettingsSlot", + "tags": [ + "WebApps" + ], + "summary": "Replaces the application settings of an app.", + "description": "Description for Replaces the application settings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "appSettings", + "in": "body", + "description": "Application settings of the app.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/appsettings/list": { + "post": { + "operationId": "WebApps_ListApplicationSettingsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the application settings of an app.", + "description": "Description for Gets the application settings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/authsettings": { + "put": { + "operationId": "WebApps_UpdateAuthSettingsSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the Authentication / Authorization settings associated with web app.", + "description": "Description for Updates the Authentication / Authorization settings associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteAuthSettings", + "in": "body", + "description": "Auth settings associated with web app.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteAuthSettings" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/authsettings/list": { + "post": { + "operationId": "WebApps_GetAuthSettingsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the Authentication/Authorization settings of an app.", + "description": "Description for Gets the Authentication/Authorization settings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/authsettingsV2": { + "get": { + "operationId": "WebApps_GetAuthSettingsV2WithoutSecretsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets site's Authentication / Authorization settings for apps via the V2 format", + "description": "Gets site's Authentication / Authorization settings for apps via the V2 format", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the settings for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_UpdateAuthSettingsV2Slot", + "tags": [ + "WebApps" + ], + "summary": "Updates site's Authentication / Authorization settings for apps via the V2 format", + "description": "Description for Updates site's Authentication / Authorization settings for apps via the V2 format", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the settings for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteAuthSettingsV2", + "in": "body", + "description": "Auth settings associated with web app.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteAuthSettingsV2' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/authsettingsV2/list": { + "get": { + "operationId": "WebApps_GetAuthSettingsV2Slot", + "tags": [ + "WebApps" + ], + "summary": "Gets site's Authentication / Authorization settings for apps via the V2 format", + "description": "Description for Gets site's Authentication / Authorization settings for apps via the V2 format", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the settings for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteAuthSettingsV2" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/azurestorageaccounts": { + "put": { + "operationId": "WebApps_UpdateAzureStorageAccountsSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the Azure storage account configurations of an app.", + "description": "Description for Updates the Azure storage account configurations of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "azureStorageAccounts", + "in": "body", + "description": "Azure storage accounts of the app.", + "required": true, + "schema": { + "$ref": "#/definitions/AzureStoragePropertyDictionaryResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AzureStoragePropertyDictionaryResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/azurestorageaccounts/list": { + "post": { + "operationId": "WebApps_ListAzureStorageAccountsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the Azure storage account configurations of an app.", + "description": "Description for Gets the Azure storage account configurations of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AzureStoragePropertyDictionaryResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/backup": { + "put": { + "operationId": "WebApps_UpdateBackupConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the backup configuration of an app.", + "description": "Description for Updates the backup configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Edited backup configuration.", + "required": true, + "schema": { + "$ref": "#/definitions/BackupRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupRequest" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteBackupConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes the backup configuration of an app.", + "description": "Description for Deletes the backup configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/backup/list": { + "post": { + "operationId": "WebApps_GetBackupConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the backup configuration of an app.", + "description": "Description for Gets the backup configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupRequest" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/configreferences/appsettings": { + "get": { + "operationId": "WebApps_GetAppSettingsKeyVaultReferencesSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference app settings and status of an app", + "description": "Description for Gets the config reference app settings and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReferenceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Azure Key Vault references for app settings for slot": { + "$ref": "./examples/GetKeyVaultReferencesForAppSettingsSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/configreferences/appsettings/{appSettingKey}": { + "get": { + "operationId": "WebApps_GetAppSettingKeyVaultReferenceSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference and status of an app", + "description": "Description for Gets the config reference and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "appSettingKey", + "in": "path", + "description": "App Setting key name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Azure Key Vault slot app setting reference": { + "$ref": "./examples/GetKeyVaultReferencesForAppSettingSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/configreferences/connectionstrings": { + "get": { + "operationId": "WebApps_GetSiteConnectionStringKeyVaultReferencesSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference app settings and status of an app", + "description": "Description for Gets the config reference app settings and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReferenceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/configreferences/connectionstrings/{connectionStringKey}": { + "get": { + "operationId": "WebApps_GetSiteConnectionStringKeyVaultReferenceSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the config reference and status of an app", + "description": "Description for Gets the config reference and status of an app", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "connectionStringKey", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ApiKVReference" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/connectionstrings": { + "put": { + "operationId": "WebApps_UpdateConnectionStringsSlot", + "tags": [ + "WebApps" + ], + "summary": "Replaces the connection strings of an app.", + "description": "Description for Replaces the connection strings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "connectionStrings", + "in": "body", + "description": "Connection strings of the app or deployment slot. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/ConnectionStringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConnectionStringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/connectionstrings/list": { + "post": { + "operationId": "WebApps_ListConnectionStringsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the connection strings of an app.", + "description": "Description for Gets the connection strings of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ConnectionStringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/logs": { + "get": { + "operationId": "WebApps_GetDiagnosticLogsConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the logging configuration of an app.", + "description": "Description for Gets the logging configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the logging configuration for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteLogsConfig" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_UpdateDiagnosticLogsConfigSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the logging configuration of an app.", + "description": "Description for Updates the logging configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the logging configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteLogsConfig", + "in": "body", + "description": "A SiteLogsConfig JSON object that contains the logging configuration to change in the \"properties\"property", + "required": true, + "schema": { + "$ref": "#/definitions/SiteLogsConfig" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteLogsConfig' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteLogsConfig" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/metadata": { + "put": { + "operationId": "WebApps_UpdateMetadataSlot", + "tags": [ + "WebApps" + ], + "summary": "Replaces the metadata of an app.", + "description": "Description for Replaces the metadata of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "metadata", + "in": "body", + "description": "Edited metadata of the app or deployment slot. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/metadata/list": { + "post": { + "operationId": "WebApps_ListMetadataSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the metadata of an app.", + "description": "Description for Gets the metadata of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/publishingcredentials/list": { + "post": { + "operationId": "WebApps_ListPublishingCredentialsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the Git/FTP publishing credentials of an app.", + "description": "Description for Gets the Git/FTP publishing credentials of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "If true, the password is included in the response. The default is false.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/User" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/User" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/pushsettings": { + "put": { + "operationId": "WebApps_UpdateSitePushSettingsSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the Push settings associated with web app.", + "description": "Description for Updates the Push settings associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "pushSettings", + "in": "body", + "description": "Push settings associated with web app.", + "required": true, + "schema": { + "$ref": "#/definitions/PushSettings" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PushSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/pushsettings/list": { + "post": { + "operationId": "WebApps_ListSitePushSettingsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the Push settings associated with web app.", + "description": "Description for Gets the Push settings associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PushSettings" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/web": { + "get": { + "operationId": "WebApps_GetConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the configuration of an app, such as platform version and bitness, default documents, virtual applications, Always On, etc.", + "description": "Description for Gets the configuration of an app, such as platform version and bitness, default documents, virtual applications, Always On, etc.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will return configuration for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the configuration of an app.", + "description": "Description for Updates the configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will return configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteConfig", + "in": "body", + "description": "JSON representation of a SiteConfig object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteConfigResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the configuration of an app.", + "description": "Description for Updates the configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will return configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteConfig", + "in": "body", + "description": "JSON representation of a SiteConfig object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/web/snapshots": { + "get": { + "operationId": "WebApps_ListConfigurationSnapshotInfoSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a list of web app configuration snapshots identifiers. Each element of the list contains a timestamp and the ID of the snapshot.", + "description": "Description for Gets a list of web app configuration snapshots identifiers. Each element of the list contains a timestamp and the ID of the snapshot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will return configuration for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigurationSnapshotInfoCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/web/snapshots/{snapshotId}": { + "get": { + "operationId": "WebApps_GetConfigurationSnapshotSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a snapshot of the configuration of an app at a previous point in time.", + "description": "Description for Gets a snapshot of the configuration of an app at a previous point in time.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will return configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "snapshotId", + "in": "path", + "description": "The ID of the snapshot to read.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/config/web/snapshots/{snapshotId}/recover": { + "post": { + "operationId": "WebApps_RecoverSiteConfigurationSnapshotSlot", + "tags": [ + "WebApps" + ], + "summary": "Reverts the configuration of an app to a previous snapshot.", + "description": "Description for Reverts the configuration of an app to a previous snapshot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will return configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "snapshotId", + "in": "path", + "description": "The ID of the snapshot to read.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/containerlogs": { + "post": { + "operationId": "WebApps_GetWebSiteContainerLogsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the last lines of docker logs for the given site", + "description": "Description for Gets the last lines of docker logs for the given site", + "produces": [ + "application/octet-stream", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/containerlogs/zip/download": { + "post": { + "operationId": "WebApps_GetContainerLogsZipSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the ZIP archived docker log files for the given site", + "description": "Description for Gets the ZIP archived docker log files for the given site", + "produces": [ + "application/zip", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/continuouswebjobs": { + "get": { + "operationId": "WebApps_ListContinuousWebJobsSlot", + "tags": [ + "WebApps" + ], + "summary": "List continuous web jobs for an app, or a deployment slot.", + "description": "Description for List continuous web jobs for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ContinuousWebJobCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/continuouswebjobs/{webJobName}": { + "get": { + "operationId": "WebApps_GetContinuousWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a continuous web job by its ID for an app, or a deployment slot.", + "description": "Description for Gets a continuous web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ContinuousWebJob" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteContinuousWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Delete a continuous web job by its ID for an app, or a deployment slot.", + "description": "Description for Delete a continuous web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/continuouswebjobs/{webJobName}/start": { + "post": { + "operationId": "WebApps_StartContinuousWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Start a continuous web job for an app, or a deployment slot.", + "description": "Description for Start a continuous web job for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/continuouswebjobs/{webJobName}/stop": { + "post": { + "operationId": "WebApps_StopContinuousWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Stop a continuous web job for an app, or a deployment slot.", + "description": "Description for Stop a continuous web job for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/deployWorkflowArtifacts": { + "post": { + "operationId": "WebApps_DeployWorkflowArtifactsSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates the artifacts for web site, or a deployment slot.", + "description": "Description for Creates the artifacts for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "workflowArtifacts", + "in": "body", + "description": "Application settings and files of the workflow.", + "required": false, + "schema": { + "$ref": "#/definitions/WorkflowArtifacts" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Deploys workflow artifacts slot": { + "$ref": "./examples/PostDeployWorkflowArtifactsSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/deploymentStatus": { + "get": { + "operationId": "WebApps_ListSlotSiteDeploymentStatusesSlot", + "tags": [ + "WebApps" + ], + "summary": "List deployment statuses for an app (or deployment slot, if specified).", + "description": "List deployment statuses for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the deployment status for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmDeploymentStatusCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List Deployment Status Slot": { + "$ref": "./examples/ListSiteDeploymentStatusSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/deploymentStatus/{deploymentStatusId}": { + "get": { + "operationId": "WebApps_GetSlotSiteDeploymentStatusSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the deployment status for an app (or deployment slot, if specified).", + "description": "Gets the deployment status for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the deployment status for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "deploymentStatusId", + "in": "path", + "description": "GUID of the deployment operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmDeploymentStatus" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/CsmDeploymentStatus" + }, + "headers": { + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get Deployment Status Slot": { + "$ref": "./examples/GetSiteDeploymentStatusSlot.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/deployments": { + "get": { + "operationId": "WebApps_ListDeploymentsSlot", + "tags": [ + "WebApps" + ], + "summary": "List deployments for an app, or a deployment slot.", + "description": "Description for List deployments for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API gets a deployment for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DeploymentCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/deployments/{id}": { + "get": { + "operationId": "WebApps_GetDeploymentSlot", + "tags": [ + "WebApps" + ], + "summary": "Get a deployment by its ID for an app, or a deployment slot.", + "description": "Description for Get a deployment by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API gets a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Deployment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateDeploymentSlot", + "tags": [ + "WebApps" + ], + "summary": "Create a deployment for an app, or a deployment slot.", + "description": "Description for Create a deployment for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API gets a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + }, + { + "name": "deployment", + "in": "body", + "description": "Deployment details.", + "required": true, + "schema": { + "$ref": "#/definitions/Deployment" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Deployment' update operation succeeded", + "schema": { + "$ref": "#/definitions/Deployment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteDeploymentSlot", + "tags": [ + "WebApps" + ], + "summary": "Delete a deployment by its ID for an app, or a deployment slot.", + "description": "Description for Delete a deployment by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API gets a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/deployments/{id}/log": { + "get": { + "operationId": "WebApps_ListDeploymentLogSlot", + "tags": [ + "WebApps" + ], + "summary": "List deployment log for specific deployment for an app, or a deployment slot.", + "description": "Description for List deployment log for specific deployment for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API gets a deployment for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "Deployment ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Deployment" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/detectors": { + "get": { + "operationId": "Diagnostics_ListSiteDetectorResponsesSlot", + "tags": [ + "Diagnostics" + ], + "summary": "List Site Detector Responses", + "description": "Description for List Site Detector Responses", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorResponseCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Detector Responses": { + "$ref": "./examples/Diagnostics_ListSiteDetectorResponses_Slot.json" + }, + "Get App Slot Detector Responses": { + "$ref": "./examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/detectors/{detectorName}": { + "get": { + "operationId": "Diagnostics_GetSiteDetectorResponseSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Get site detector response", + "description": "Description for Get site detector response", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot Name", + "required": true, + "type": "string" + }, + { + "name": "detectorName", + "in": "path", + "description": "Detector Resource Name", + "required": true, + "type": "string" + }, + { + "name": "startTime", + "in": "query", + "description": "Start Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "endTime", + "in": "query", + "description": "End Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "timeGrain", + "in": "query", + "description": "Time Grain", + "required": false, + "type": "string", + "pattern": "PT[1-9][0-9]+[SMH]" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Detector Response": { + "$ref": "./examples/Diagnostics_GetSiteDetectorResponse_Slot.json" + }, + "Get App Slot Detector Response": { + "$ref": "./examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics": { + "get": { + "operationId": "Diagnostics_ListSiteDiagnosticCategoriesSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Get Diagnostics Categories", + "description": "Description for Get Diagnostics Categories", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticCategoryCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Diagnostic Categories": { + "$ref": "./examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json" + }, + "List App Slot Diagnostic Categories": { + "$ref": "./examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics/{diagnosticCategory}": { + "get": { + "operationId": "Diagnostics_GetSiteDiagnosticCategorySlot", + "tags": [ + "Diagnostics" + ], + "summary": "Get Diagnostics Category", + "description": "Description for Get Diagnostics Category", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticCategory" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Diagnostic Category": { + "$ref": "./examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json" + }, + "Get App Slot Diagnostic Category": { + "$ref": "./examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics/{diagnosticCategory}/analyses": { + "get": { + "operationId": "Diagnostics_ListSiteAnalysesSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Get Site Analyses", + "description": "Description for Get Site Analyses", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot - optional", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticAnalysisCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Analyses": { + "$ref": "./examples/Diagnostics_ListSiteAnalyses_Slot.json" + }, + "List App Slot Analyses": { + "$ref": "./examples/Diagnostics_ListSiteAnalysesSlot_Slot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics/{diagnosticCategory}/analyses/{analysisName}": { + "get": { + "operationId": "Diagnostics_GetSiteAnalysisSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Get Site Analysis", + "description": "Description for Get Site Analysis", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot - optional", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "analysisName", + "in": "path", + "description": "Analysis Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/AnalysisDefinition" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Analysis": { + "$ref": "./examples/Diagnostics_GetSiteAnalysis_Slot.json" + }, + "Get App Slot Analysis": { + "$ref": "./examples/Diagnostics_GetSiteAnalysisSlot_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics/{diagnosticCategory}/analyses/{analysisName}/execute": { + "post": { + "operationId": "Diagnostics_ExecuteSiteAnalysisSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Execute Analysis", + "description": "Description for Execute Analysis", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot - optional", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "analysisName", + "in": "path", + "description": "Analysis Name", + "required": true, + "type": "string" + }, + { + "name": "startTime", + "in": "query", + "description": "Start Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "endTime", + "in": "query", + "description": "End Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "timeGrain", + "in": "query", + "description": "Time Grain", + "required": false, + "type": "string", + "pattern": "PT[1-9][0-9]+[SMH]" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticAnalysis" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Execute site analysis": { + "$ref": "./examples/Diagnostics_ExecuteSiteAnalysis_Slot.json" + }, + "Execute site slot analysis": { + "$ref": "./examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics/{diagnosticCategory}/detectors": { + "get": { + "operationId": "Diagnostics_ListSiteDetectorsSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Get Detectors", + "description": "Description for Get Detectors", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticDetectorCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List App Detectors": { + "$ref": "./examples/Diagnostics_ListSiteDetectors_Slot.json" + }, + "List App Slot Detectors": { + "$ref": "./examples/Diagnostics_ListSiteDetectorsSlot_Slot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics/{diagnosticCategory}/detectors/{detectorName}": { + "get": { + "operationId": "Diagnostics_GetSiteDetectorSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Get Detector", + "description": "Description for Get Detector", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "detectorName", + "in": "path", + "description": "Detector Name", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DetectorDefinitionResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get App Detector": { + "$ref": "./examples/Diagnostics_GetSiteDetector_Slot.json" + }, + "Get App Slot Detector": { + "$ref": "./examples/Diagnostics_GetSiteDetectorSlot_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slot}/diagnostics/{diagnosticCategory}/detectors/{detectorName}/execute": { + "post": { + "operationId": "Diagnostics_ExecuteSiteDetectorSlot", + "tags": [ + "Diagnostics" + ], + "summary": "Execute Detector", + "description": "Description for Execute Detector", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "siteName", + "in": "path", + "description": "Site Name", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Slot Name", + "required": true, + "type": "string" + }, + { + "name": "diagnosticCategory", + "in": "path", + "description": "Diagnostic Category", + "required": true, + "type": "string" + }, + { + "name": "detectorName", + "in": "path", + "description": "Detector Name", + "required": true, + "type": "string" + }, + { + "name": "startTime", + "in": "query", + "description": "Start Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "endTime", + "in": "query", + "description": "End Time", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "timeGrain", + "in": "query", + "description": "Time Grain", + "required": false, + "type": "string", + "pattern": "PT[1-9][0-9]+[SMH]" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DiagnosticDetectorResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Execute site detector": { + "$ref": "./examples/Diagnostics_ExecuteSiteDetector_Slot.json" + }, + "Execute site slot detector": { + "$ref": "./examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/discoverbackup": { + "post": { + "operationId": "WebApps_DiscoverBackupSlot", + "tags": [ + "WebApps" + ], + "summary": "Discovers an existing app backup that can be restored from a blob in Azure storage. Use this to get information about the databases stored in a backup.", + "description": "Description for Discovers an existing app backup that can be restored from a blob in Azure storage. Use this to get information about the databases stored in a backup.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "A RestoreRequest object that includes Azure storage URL and blog name for discovery of backup.", + "required": true, + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/domainOwnershipIdentifiers": { + "get": { + "operationId": "WebApps_ListDomainOwnershipIdentifiersSlot", + "tags": [ + "WebApps" + ], + "summary": "Lists ownership identifiers for domain associated with web app.", + "description": "Description for Lists ownership identifiers for domain associated with web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will delete the binding for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/IdentifierCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/domainOwnershipIdentifiers/{domainOwnershipIdentifierName}": { + "get": { + "operationId": "WebApps_GetDomainOwnershipIdentifierSlot", + "tags": [ + "WebApps" + ], + "summary": "Get domain ownership identifier for web app.", + "description": "Description for Get domain ownership identifier for web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will delete the binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Identifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateDomainOwnershipIdentifierSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "description": "Description for Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will delete the binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifier", + "in": "body", + "description": "A JSON representation of the domain ownership properties.", + "required": true, + "schema": { + "$ref": "#/definitions/Identifier" + } + } + ], + "responses": { + "200": { + "description": "Resource 'Identifier' update operation succeeded", + "schema": { + "$ref": "#/definitions/Identifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateDomainOwnershipIdentifierSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "description": "Description for Creates a domain ownership identifier for web app, or updates an existing ownership identifier.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will delete the binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifier", + "in": "body", + "description": "A JSON representation of the domain ownership properties.", + "required": true, + "schema": { + "$ref": "#/definitions/Identifier" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Identifier" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteDomainOwnershipIdentifierSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a domain ownership identifier for a web app.", + "description": "Description for Deletes a domain ownership identifier for a web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will delete the binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "domainOwnershipIdentifierName", + "in": "path", + "description": "Name of domain ownership identifier.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/extensions/MSDeploy": { + "get": { + "operationId": "WebApps_GetMSDeployStatusSlot", + "tags": [ + "WebApps" + ], + "summary": "Get the status of the last MSDeploy operation.", + "description": "Description for Get the status of the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateMSDeployOperationSlot", + "tags": [ + "WebApps" + ], + "summary": "Invoke the MSDeploy web app extension.", + "description": "Description for Invoke the MSDeploy web app extension.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + }, + { + "name": "MSDeploy", + "in": "body", + "description": "Details of MSDeploy operation", + "required": true, + "schema": { + "$ref": "#/definitions/MSDeploy" + } + } + ], + "responses": { + "201": { + "description": "Resource 'MSDeployStatus' create operation succeeded", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "409": { + "description": "The request conflicts with the current state of the server.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/MSDeployStatus" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/extensions/MSDeploy/log": { + "get": { + "operationId": "WebApps_GetMSDeployLogSlot", + "tags": [ + "WebApps" + ], + "summary": "Get the MSDeploy Log for the last MSDeploy operation.", + "description": "Description for Get the MSDeploy Log for the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployLog" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/functions": { + "get": { + "operationId": "WebApps_ListInstanceFunctionsSlot", + "tags": [ + "WebApps" + ], + "summary": "List the functions for a web site, or a deployment slot.", + "description": "Description for List the functions for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionEnvelopeCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/functions/{functionName}": { + "get": { + "operationId": "WebApps_GetInstanceFunctionSlot", + "tags": [ + "WebApps" + ], + "summary": "Get function information by its ID for web site, or a deployment slot.", + "description": "Description for Get function information by its ID for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionEnvelope" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateInstanceFunctionSlot", + "tags": [ + "WebApps" + ], + "summary": "Create function for web site, or a deployment slot.", + "description": "Description for Create function for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + }, + { + "name": "function_envelope", + "in": "body", + "description": "Function details.", + "required": true, + "schema": { + "$ref": "#/definitions/FunctionEnvelope" + } + } + ], + "responses": { + "201": { + "description": "Resource 'FunctionEnvelope' create operation succeeded", + "schema": { + "$ref": "#/definitions/FunctionEnvelope" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/FunctionEnvelope" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "WebApps_DeleteInstanceFunctionSlot", + "tags": [ + "WebApps" + ], + "summary": "Delete a function for web site, or a deployment slot.", + "description": "Description for Delete a function for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/functions/{functionName}/keys/{keyName}": { + "put": { + "operationId": "WebApps_CreateOrUpdateFunctionSecretSlot", + "tags": [ + "WebApps" + ], + "summary": "Add or update a function secret.", + "description": "Description for Add or update a function secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "key", + "in": "body", + "description": "The key to create or update", + "required": true, + "schema": { + "$ref": "#/definitions/KeyInfo" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "201": { + "description": "Resource 'KeyInfo' create operation succeeded", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteFunctionSecretSlot", + "tags": [ + "WebApps" + ], + "summary": "Delete a function secret.", + "description": "Description for Delete a function secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/functions/{functionName}/listkeys": { + "post": { + "operationId": "WebApps_ListFunctionKeysSlot", + "tags": [ + "WebApps" + ], + "summary": "Get function keys for a function in a web site, or a deployment slot.", + "description": "Description for Get function keys for a function in a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/functions/{functionName}/listsecrets": { + "post": { + "operationId": "WebApps_ListFunctionSecretsSlot", + "tags": [ + "WebApps" + ], + "summary": "Get function secrets for a function in a web site, or a deployment slot.", + "description": "Description for Get function secrets for a function in a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "description": "Function name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionSecrets" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/functions/admin/token": { + "get": { + "operationId": "WebApps_GetFunctionsAdminTokenSlot", + "tags": [ + "WebApps" + ], + "summary": "Fetch a short lived token that can be exchanged for a master key.", + "description": "Description for Fetch a short lived token that can be exchanged for a master key.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/stringApplicationJson" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/host/default/listkeys": { + "post": { + "operationId": "WebApps_ListHostKeysSlot", + "tags": [ + "WebApps" + ], + "summary": "Get host secrets for a function app.", + "description": "Description for Get host secrets for a function app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HostKeys" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/host/default/listsyncstatus": { + "post": { + "operationId": "WebApps_ListSyncStatusSlot", + "tags": [ + "WebApps" + ], + "summary": "This is to allow calling via powershell and ARM template.", + "description": "Description for This is to allow calling via powershell and ARM template.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/host/default/sync": { + "post": { + "operationId": "WebApps_SyncFunctionsSlot", + "tags": [ + "WebApps" + ], + "summary": "Syncs function trigger metadata to the management database", + "description": "Description for Syncs function trigger metadata to the management database", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/hostNameBindings": { + "get": { + "operationId": "WebApps_ListHostNameBindingsSlot", + "tags": [ + "WebApps" + ], + "summary": "Get hostname bindings for an app or a deployment slot.", + "description": "Description for Get hostname bindings for an app or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HostNameBindingCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/hostNameBindings/{hostName}": { + "get": { + "operationId": "WebApps_GetHostNameBindingSlot", + "tags": [ + "WebApps" + ], + "summary": "Get the named hostname binding for an app (or deployment slot, if specified).", + "description": "Description for Get the named hostname binding for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "Hostname in the hostname binding.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HostNameBinding" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateHostNameBindingSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a hostname binding for an app.", + "description": "Description for Creates a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "Hostname in the hostname binding.", + "required": true, + "type": "string" + }, + { + "name": "hostNameBinding", + "in": "body", + "description": "Binding details. This is the JSON representation of a HostNameBinding object.", + "required": true, + "schema": { + "$ref": "#/definitions/HostNameBinding" + } + } + ], + "responses": { + "200": { + "description": "Resource 'HostNameBinding' update operation succeeded", + "schema": { + "$ref": "#/definitions/HostNameBinding" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteHostNameBindingSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a hostname binding for an app.", + "description": "Description for Deletes a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "hostName", + "in": "path", + "description": "Hostname in the hostname binding.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/hybridConnectionNamespaces/{namespaceName}/relays/{relayName}": { + "get": { + "operationId": "WebApps_GetHybridConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Retrieves a specific Service Bus Hybrid Connection used by this Web App.", + "description": "Description for Retrieves a specific Service Bus Hybrid Connection used by this Web App.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "The name of the slot for the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateHybridConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a new Hybrid Connection using a Service Bus relay.", + "description": "Description for Creates a new Hybrid Connection using a Service Bus relay.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "The name of the slot for the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The details of the hybrid connection.", + "required": true, + "schema": { + "$ref": "#/definitions/HybridConnection" + } + } + ], + "responses": { + "200": { + "description": "Resource 'HybridConnection' update operation succeeded", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateHybridConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a new Hybrid Connection using a Service Bus relay.", + "description": "Description for Creates a new Hybrid Connection using a Service Bus relay.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "The name of the slot for the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The details of the hybrid connection.", + "required": true, + "schema": { + "$ref": "#/definitions/HybridConnection" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteHybridConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Removes a Hybrid Connection from this site.", + "description": "Description for Removes a Hybrid Connection from this site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "The name of the slot for the web app.", + "required": true, + "type": "string" + }, + { + "name": "namespaceName", + "in": "path", + "description": "The namespace for this hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "relayName", + "in": "path", + "description": "The relay name for this hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/hybridConnectionRelays": { + "get": { + "operationId": "WebApps_ListHybridConnectionsSlot", + "tags": [ + "WebApps" + ], + "summary": "Retrieves all Service Bus Hybrid Connections used by this Web App.", + "description": "Description for Retrieves all Service Bus Hybrid Connections used by this Web App.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HybridConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/hybridconnection": { + "get": { + "operationId": "WebApps_ListRelayServiceConnectionsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets hybrid connections configured for an app (or deployment slot, if specified).", + "description": "Description for Gets hybrid connections configured for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/hybridconnection/{entityName}": { + "get": { + "operationId": "WebApps_GetRelayServiceConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a hybrid connection configuration by its name.", + "description": "Description for Gets a hybrid connection configuration by its name.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a hybrid connection for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateRelayServiceConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "description": "Description for Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a hybrid connection for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Details of the hybrid connection configuration.", + "required": true, + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + } + ], + "responses": { + "200": { + "description": "Resource 'RelayServiceConnectionEntity' update operation succeeded", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateRelayServiceConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "description": "Description for Creates a new hybrid connection configuration (PUT), or updates an existing one (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a hybrid connection for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Details of the hybrid connection configuration.", + "required": true, + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteRelayServiceConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a relay service connection by its name.", + "description": "Description for Deletes a relay service connection by its name.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a hybrid connection for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "entityName", + "in": "path", + "description": "Name of the hybrid connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances": { + "get": { + "operationId": "WebApps_ListInstanceIdentifiersSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets all scale-out instances of an app.", + "description": "Description for Gets all scale-out instances of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API gets the production slot instances.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebAppInstanceStatusCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}": { + "get": { + "operationId": "WebApps_GetInstanceInfoSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets all scale-out instances of an app.", + "description": "Description for Gets all scale-out instances of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API gets the production slot instances.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebSiteInstanceStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get site instance info": { + "$ref": "./examples/GetSiteInstanceInfo_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/extensions/MSDeploy": { + "get": { + "operationId": "WebApps_GetInstanceMsDeployStatusSlot", + "tags": [ + "WebApps" + ], + "summary": "Get the status of the last MSDeploy operation.", + "description": "Description for Get the status of the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of web app instance.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateInstanceMSDeployOperationSlot", + "tags": [ + "WebApps" + ], + "summary": "Invoke the MSDeploy web app extension.", + "description": "Description for Invoke the MSDeploy web app extension.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of web app instance.", + "required": true, + "type": "string" + }, + { + "name": "MSDeploy", + "in": "body", + "description": "Details of MSDeploy operation", + "required": true, + "schema": { + "$ref": "#/definitions/MSDeploy" + } + } + ], + "responses": { + "201": { + "description": "Resource 'MSDeployStatus' create operation succeeded", + "schema": { + "$ref": "#/definitions/MSDeployStatus" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "409": { + "description": "The request conflicts with the current state of the server.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/MSDeployStatus" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/extensions/MSDeploy/log": { + "get": { + "operationId": "WebApps_GetInstanceMSDeployLogSlot", + "tags": [ + "WebApps" + ], + "summary": "Get the MSDeploy Log for the last MSDeploy operation.", + "description": "Description for Get the MSDeploy Log for the last MSDeploy operation.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of web app instance.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MSDeployLog" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/processes": { + "get": { + "operationId": "WebApps_ListInstanceProcessesSlot", + "tags": [ + "WebApps" + ], + "summary": "Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "description": "Description for Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/processes/{processId}": { + "get": { + "operationId": "WebApps_GetInstanceProcessSlot", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteInstanceProcessSlot", + "tags": [ + "WebApps" + ], + "summary": "Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "description": "Description for Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/processes/{processId}/dump": { + "get": { + "operationId": "WebApps_GetInstanceProcessDumpSlot", + "tags": [ + "WebApps" + ], + "summary": "Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "produces": [ + "*/*", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/processes/{processId}/modules": { + "get": { + "operationId": "WebApps_ListInstanceProcessModulesSlot", + "tags": [ + "WebApps" + ], + "summary": "List module information for a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List module information for a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/processes/{processId}/modules/{baseAddress}": { + "get": { + "operationId": "WebApps_GetInstanceProcessModuleSlot", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + }, + { + "name": "baseAddress", + "in": "path", + "description": "Module base address.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/instances/{instanceId}/processes/{processId}/threads": { + "get": { + "operationId": "WebApps_ListInstanceProcessThreadsSlot", + "tags": [ + "WebApps" + ], + "summary": "List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "instanceId", + "in": "path", + "description": "ID of a specific scaled-out instance. This is the value of the name property in the JSON response from \"GET api/sites/{siteName}/instances\".", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessThreadInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/iscloneable": { + "post": { + "operationId": "WebApps_IsCloneableSlot", + "tags": [ + "WebApps" + ], + "summary": "Shows whether an app can be cloned to another resource group or subscription.", + "description": "Description for Shows whether an app can be cloned to another resource group or subscription.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteCloneability" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/listWorkflowsConnections": { + "post": { + "operationId": "WebApps_ListWorkflowsConnectionsSlot", + "tags": [ + "WebApps" + ], + "summary": "Lists logic app's connections for web site, or a deployment slot.", + "description": "Lists logic app's connections for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowEnvelope" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List the Instance Workflows Configuration Connections Slot": { + "$ref": "./examples/ListWorkflowsConfigurationConnections_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/listbackups": { + "post": { + "operationId": "WebApps_ListSiteBackupsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets existing backups of an app.", + "description": "Description for Gets existing backups of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/BackupItemCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List backups": { + "$ref": "./examples/ListSiteBackupsSlot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/listsyncfunctiontriggerstatus": { + "post": { + "operationId": "WebApps_ListSyncFunctionTriggersSlot", + "tags": [ + "WebApps" + ], + "summary": "This is to allow calling via powershell and ARM template.", + "description": "Description for This is to allow calling via powershell and ARM template.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/FunctionSecrets" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/migratemysql/status": { + "get": { + "operationId": "WebApps_GetMigrateMySqlStatusSlot", + "tags": [ + "WebApps" + ], + "summary": "Returns the status of MySql in app migration, if one is active, and whether or not MySql in app is enabled", + "description": "Description for Returns the status of MySql in app migration, if one is active, and whether or not MySql in app is enabled", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/MigrateMySqlStatus" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/networkConfig/virtualNetwork": { + "get": { + "operationId": "WebApps_GetSwiftVirtualNetworkConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a Swift Virtual Network connection.", + "description": "Description for Gets a Swift Virtual Network connection.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a gateway for the production slot's Virtual Network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateSwiftVirtualNetworkConnectionWithCheckSlot", + "tags": [ + "WebApps" + ], + "summary": "Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\r\nin use by another App Service Plan other than the one this App is in.", + "description": "Description for Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\nin use by another App Service Plan other than the one this App is in.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a gateway for the production slot's Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SwiftVirtualNetwork' update operation succeeded", + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateSwiftVirtualNetworkConnectionWithCheckSlot", + "tags": [ + "WebApps" + ], + "summary": "Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\r\nin use by another App Service Plan other than the one this App is in.", + "description": "Description for Integrates this Web App with a Virtual Network. This requires that 1) \"swiftSupported\" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not\nin use by another App Service Plan other than the one this App is in.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a gateway for the production slot's Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SwiftVirtualNetwork" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteSwiftVirtualNetworkSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a Swift Virtual Network connection from an app (or deployment slot).", + "description": "Description for Deletes a Swift Virtual Network connection from an app (or deployment slot).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a gateway for the production slot's Virtual Network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/networkFeatures/{view}": { + "get": { + "operationId": "WebApps_ListNetworkFeaturesSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets all network features used by the app (or deployment slot, if specified).", + "description": "Description for Gets all network features used by the app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get network features for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "view", + "in": "path", + "description": "The type of view. Only \"summary\" is supported at this time.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/NetworkFeatures" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/networkTrace/start": { + "post": { + "operationId": "WebApps_StartWebSiteNetworkTraceSlot", + "tags": [ + "WebApps" + ], + "summary": "Start capturing network packets for the site (To be deprecated).", + "description": "Description for Start capturing network packets for the site (To be deprecated).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "durationInSeconds", + "in": "query", + "description": "The duration to keep capturing in seconds.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "maxFrameLength", + "in": "query", + "description": "The maximum frame length in bytes (Optional).", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "sasUrl", + "in": "query", + "description": "The Blob URL to store capture file.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/stringApplicationJson" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/networkTrace/startOperation": { + "post": { + "operationId": "WebApps_StartWebSiteNetworkTraceOperationSlot", + "tags": [ + "WebApps" + ], + "summary": "Start capturing network packets for the site.", + "description": "Description for Start capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "durationInSeconds", + "in": "query", + "description": "The duration to keep capturing in seconds.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "maxFrameLength", + "in": "query", + "description": "The maximum frame length in bytes (Optional).", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "sasUrl", + "in": "query", + "description": "The Blob URL to store capture file.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Start a new network trace operation for a site": { + "$ref": "./examples/StartWebSiteNetworkTraceOperation_Slot.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/networkTrace/stop": { + "post": { + "operationId": "WebApps_StopWebSiteNetworkTraceSlot", + "tags": [ + "WebApps" + ], + "summary": "Stop ongoing capturing network packets for the site.", + "description": "Description for Stop ongoing capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Stop a currently running network trace operation for a site": { + "$ref": "./examples/StopWebSiteNetworkTrace_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/newpassword": { + "post": { + "operationId": "WebApps_GenerateNewSitePublishingPasswordSlot", + "tags": [ + "WebApps" + ], + "summary": "Generates a new publishing password for an app (or deployment slot, if specified).", + "description": "Description for Generates a new publishing password for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/perfcounters": { + "get": { + "operationId": "WebApps_ListPerfMonCountersSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets perfmon counters for web app.", + "description": "Description for Gets perfmon counters for web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only usages/metrics specified in the filter. Filter conforms to odata syntax. Example: $filter=(startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[Hour|Minute|Day]'.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PerfMonCounterCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/phplogging": { + "get": { + "operationId": "WebApps_GetSitePhpErrorLogFlagSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets web app's event logs.", + "description": "Description for Gets web app's event logs.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SitePhpErrorLogFlag" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/premieraddons": { + "get": { + "operationId": "WebApps_ListPremierAddOnsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the premier add-ons of an app.", + "description": "Description for Gets the premier add-ons of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/premieraddons/{premierAddOnName}": { + "get": { + "operationId": "WebApps_GetPremierAddOnSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a named add-on of an app.", + "description": "Description for Gets a named add-on of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named add-on for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_AddPremierAddOnSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates a named add-on of an app.", + "description": "Description for Updates a named add-on of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named add-on for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOn", + "in": "body", + "description": "A JSON representation of the edited premier add-on.", + "required": true, + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + } + ], + "responses": { + "200": { + "description": "Resource 'PremierAddOn' update operation succeeded", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdatePremierAddOnSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates a named add-on of an app.", + "description": "Description for Updates a named add-on of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named add-on for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOn", + "in": "body", + "description": "A JSON representation of the edited premier add-on.", + "required": true, + "schema": { + "$ref": "#/definitions/PremierAddOnPatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PremierAddOn" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeletePremierAddOnSlot", + "tags": [ + "WebApps" + ], + "summary": "Delete a premier add-on from an app.", + "description": "Description for Delete a premier add-on from an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named add-on for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "premierAddOnName", + "in": "path", + "description": "Add-on name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/privateAccess/virtualNetworks": { + "get": { + "operationId": "WebApps_GetPrivateAccessSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets data around private site access enablement and authorized Virtual Networks that can access the site.", + "description": "Description for Gets data around private site access enablement and authorized Virtual Networks that can access the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "The name of the slot for the web app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateAccess" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_PutPrivateAccessVnetSlot", + "tags": [ + "WebApps" + ], + "summary": "Sets data around private site access enablement and authorized Virtual Networks that can access the site.", + "description": "Description for Sets data around private site access enablement and authorized Virtual Networks that can access the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "The name of the web app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "The name of the slot for the web app.", + "required": true, + "type": "string" + }, + { + "name": "access", + "in": "body", + "description": "The information for the private access", + "required": true, + "schema": { + "$ref": "#/definitions/PrivateAccess" + } + } + ], + "responses": { + "200": { + "description": "Resource 'PrivateAccess' update operation succeeded", + "schema": { + "$ref": "#/definitions/PrivateAccess" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/privateEndpointConnections": { + "get": { + "operationId": "WebApps_GetPrivateEndpointConnectionListSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the list of private endpoint connections associated with a site", + "description": "Description for Gets the list of private endpoint connections associated with a site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the site deployment slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateEndpointConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/privateEndpointConnections/{privateEndpointConnectionName}": { + "get": { + "operationId": "WebApps_GetPrivateEndpointConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a private endpoint connection", + "description": "Description for Gets a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the site deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a private endpoint connection for a site.": { + "$ref": "./examples/GetSitePrivateEndpointConnectionSlot.json" + } + } + }, + "put": { + "operationId": "WebApps_ApproveOrRejectPrivateEndpointConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Approves or rejects a private endpoint connection", + "description": "Description for Approves or rejects a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the site deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointWrapper", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'RemotePrivateEndpointConnectionARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Approves or rejects a private endpoint connection for a site.": { + "$ref": "./examples/ApproveRejectSitePrivateEndpointConnectionSlot.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "WebApps_DeletePrivateEndpointConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a private endpoint connection", + "description": "Description for Deletes a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the site.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the site deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": {}, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful. ", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a private endpoint connection for a site.": { + "$ref": "./examples/DeleteSitePrivateEndpointConnectionSlot.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/privateLinkResources": { + "get": { + "operationId": "WebApps_GetPrivateLinkResourcesSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the private link resources", + "description": "Description for Gets the private link resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateLinkResourcesWrapper" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get private link resources of a site": { + "$ref": "./examples/GetSitePrivateLinkResourcesSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/processes": { + "get": { + "operationId": "WebApps_ListProcessesSlot", + "tags": [ + "WebApps" + ], + "summary": "Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "description": "Description for Get list of processes for a web site, or a deployment slot, or for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/processes/{processId}": { + "get": { + "operationId": "WebApps_GetProcessSlot", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteProcessSlot", + "tags": [ + "WebApps" + ], + "summary": "Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "description": "Description for Terminate a process by its ID for a web site, or a deployment slot, or specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/processes/{processId}/dump": { + "get": { + "operationId": "WebApps_GetProcessDumpSlot", + "tags": [ + "WebApps" + ], + "summary": "Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get a memory dump of a process by its ID for a specific scaled-out instance in a web site.", + "produces": [ + "*/*", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/processes/{processId}/modules": { + "get": { + "operationId": "WebApps_ListProcessModulesSlot", + "tags": [ + "WebApps" + ], + "summary": "List module information for a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List module information for a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/processes/{processId}/modules/{baseAddress}": { + "get": { + "operationId": "WebApps_GetProcessModuleSlot", + "tags": [ + "WebApps" + ], + "summary": "Get process information by its ID for a specific scaled-out instance in a web site.", + "description": "Description for Get process information by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + }, + { + "name": "baseAddress", + "in": "path", + "description": "Module base address.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessModuleInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/processes/{processId}/threads": { + "get": { + "operationId": "WebApps_ListProcessThreadsSlot", + "tags": [ + "WebApps" + ], + "summary": "List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "description": "Description for List the threads in a process by its ID for a specific scaled-out instance in a web site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "processId", + "in": "path", + "description": "PID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ProcessThreadInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/publicCertificates": { + "get": { + "operationId": "WebApps_ListPublicCertificatesSlot", + "tags": [ + "WebApps" + ], + "summary": "Get public certificates for an app or a deployment slot.", + "description": "Description for Get public certificates for an app or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PublicCertificateCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/publicCertificates/{publicCertificateName}": { + "get": { + "operationId": "WebApps_GetPublicCertificateSlot", + "tags": [ + "WebApps" + ], + "summary": "Get the named public certificate for an app (or deployment slot, if specified).", + "description": "Description for Get the named public certificate for an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificateName", + "in": "path", + "description": "Public certificate name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PublicCertificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdatePublicCertificateSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates a hostname binding for an app.", + "description": "Description for Creates a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificateName", + "in": "path", + "description": "Public certificate name.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificate", + "in": "body", + "description": "Public certificate details. This is the JSON representation of a PublicCertificate object.", + "required": true, + "schema": { + "$ref": "#/definitions/PublicCertificate" + } + } + ], + "responses": { + "200": { + "description": "Resource 'PublicCertificate' update operation succeeded", + "schema": { + "$ref": "#/definitions/PublicCertificate" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeletePublicCertificateSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a hostname binding for an app.", + "description": "Description for Deletes a hostname binding for an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API the named binding for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "publicCertificateName", + "in": "path", + "description": "Public certificate name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/publishxml": { + "post": { + "operationId": "WebApps_ListPublishingProfileXmlWithSecretsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the publishing profile for an app (or deployment slot, if specified).", + "description": "Description for Gets the publishing profile for an app (or deployment slot, if specified).", + "produces": [ + "application/xml", + "application/json" + ], + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "publishingProfileOptions", + "in": "body", + "description": "Specifies publishingProfileOptions for publishing profile. For example, use {\" format\": \"FileZilla3\"} to get a FileZilla publishing profile.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmPublishingProfileOptions" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "file" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/resetSlotConfig": { + "post": { + "operationId": "WebApps_ResetSlotConfigurationSlot", + "tags": [ + "WebApps" + ], + "summary": "Resets the configuration settings of the current slot if they were previously modified by calling the API with POST.", + "description": "Description for Resets the configuration settings of the current slot if they were previously modified by calling the API with POST.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/resourceHealthMetadata": { + "get": { + "operationId": "ResourceHealthMetadata_ListBySiteSlot", + "tags": [ + "ResourceHealthMetadata" + ], + "summary": "Gets the category of ResourceHealthMetadata to use for the given site as a collection", + "description": "Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceHealthMetadataCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List ResourceHealthMetadata for a site": { + "$ref": "./examples/ListResourceHealthMetadataBySite_Slot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/resourceHealthMetadata/default": { + "get": { + "operationId": "ResourceHealthMetadata_GetBySiteSlot", + "tags": [ + "ResourceHealthMetadata" + ], + "summary": "Gets the category of ResourceHealthMetadata to use for the given site", + "description": "Description for Gets the category of ResourceHealthMetadata to use for the given site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of web app", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of web app slot. If not specified then will default to production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceHealthMetadata" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get ResourceHealthMetadata": { + "$ref": "./examples/GetResourceHealthMetadataBySite_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/restart": { + "post": { + "operationId": "WebApps_RestartSlot", + "tags": [ + "WebApps" + ], + "summary": "Restarts an app (or deployment slot, if specified).", + "description": "Description for Restarts an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "softRestart", + "in": "query", + "description": "Specify true to apply the configuration settings and restarts the app only if necessary. By default, the API always restarts and reprovisions the app.", + "required": false, + "type": "boolean" + }, + { + "name": "synchronous", + "in": "query", + "description": "Specify true to block until the app is restarted. By default, it is set to false, and the API responds immediately (asynchronous).", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/restoreFromBackupBlob": { + "post": { + "operationId": "WebApps_RestoreFromBackupBlobSlot", + "tags": [ + "WebApps" + ], + "summary": "Restores an app from a backup blob in Azure Storage.", + "description": "Description for Restores an app from a backup blob in Azure Storage.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "request", + "in": "body", + "description": "Information on restore request .", + "required": true, + "schema": { + "$ref": "#/definitions/RestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/restoreFromDeletedApp": { + "post": { + "operationId": "WebApps_RestoreFromDeletedAppSlot", + "tags": [ + "WebApps" + ], + "summary": "Restores a deleted web app to this web app.", + "description": "Description for Restores a deleted web app to this web app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "restoreRequest", + "in": "body", + "description": "Deleted web app restore information.", + "required": true, + "schema": { + "$ref": "#/definitions/DeletedAppRestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/restoreSnapshot": { + "post": { + "operationId": "WebApps_RestoreSnapshotSlot", + "tags": [ + "WebApps" + ], + "summary": "Restores a web app from a snapshot.", + "description": "Description for Restores a web app from a snapshot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "restoreRequest", + "in": "body", + "description": "Snapshot restore settings. Snapshot information can be obtained by calling GetDeletedSites or GetSiteSnapshots API.", + "required": true, + "schema": { + "$ref": "#/definitions/SnapshotRestoreRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/sitecontainers": { + "get": { + "operationId": "WebApps_ListSiteContainersSlot", + "tags": [ + "WebApps" + ], + "summary": "Lists all the site containers of a site, or a deployment slot.", + "description": "Lists all the site containers of a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the Site Container for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteContainerCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/sitecontainers/{containerName}": { + "get": { + "operationId": "WebApps_GetSiteContainerSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a site container of a site, or a deployment slot.", + "description": "Gets a site container of a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the Site Container for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "containerName", + "in": "path", + "description": "Site Container Name", + "required": true, + "type": "string", + "pattern": "(^[a-zA-Z0-9]$)|(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteContainer" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateSiteContainerSlot", + "tags": [ + "WebApps" + ], + "summary": "Creates or Updates a site container for a site, or a deployment slot.", + "description": "Creates or Updates a site container for a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the Site Container for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "containerName", + "in": "path", + "description": "Site Container Name", + "required": true, + "type": "string", + "pattern": "(^[a-zA-Z0-9]$)|(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)" + }, + { + "name": "request", + "in": "body", + "description": "Container Entity", + "required": true, + "schema": { + "$ref": "#/definitions/SiteContainer" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteContainer' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteContainer" + } + }, + "201": { + "description": "Resource 'SiteContainer' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteContainer" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteSiteContainerSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a site container for a site, or a deployment slot.", + "description": "Deletes a site container for a site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the Site Container for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "containerName", + "in": "path", + "description": "Site Container Name", + "required": true, + "type": "string", + "pattern": "(^[a-zA-Z0-9]$)|(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/siteextensions": { + "get": { + "operationId": "WebApps_ListSiteExtensionsSlot", + "tags": [ + "WebApps" + ], + "summary": "Get list of siteextensions for a web site, or a deployment slot.", + "description": "Description for Get list of siteextensions for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteExtensionInfoCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/siteextensions/{siteExtensionId}": { + "get": { + "operationId": "WebApps_GetSiteExtensionSlot", + "tags": [ + "WebApps" + ], + "summary": "Get site extension information by its ID for a web site, or a deployment slot.", + "description": "Description for Get site extension information by its ID for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteExtensionId", + "in": "path", + "description": "Site extension name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteExtensionInfo" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_InstallSiteExtensionSlot", + "tags": [ + "WebApps" + ], + "summary": "Install site extension on a web site, or a deployment slot.", + "description": "Description for Install site extension on a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteExtensionId", + "in": "path", + "description": "Site extension name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteExtensionInfo" + } + }, + "201": { + "description": "Resource 'SiteExtensionInfo' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteExtensionInfo" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "429": { + "description": "Client error", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/SiteExtensionInfo" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "WebApps_DeleteSiteExtensionSlot", + "tags": [ + "WebApps" + ], + "summary": "Remove a site extension from a web site, or a deployment slot.", + "description": "Description for Remove a site extension from a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteExtensionId", + "in": "path", + "description": "Site extension name.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "Resource does not exist." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/slotsdiffs": { + "post": { + "operationId": "WebApps_ListSlotDifferencesSlot", + "tags": [ + "WebApps" + ], + "summary": "Get the difference in configuration settings between two web app slots.", + "description": "Description for Get the difference in configuration settings between two web app slots.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "slotSwapEntity", + "in": "body", + "description": "JSON object that contains the target slot name. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmSlotEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SlotDifferenceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/slotsswap": { + "post": { + "operationId": "WebApps_SwapSlotSlot", + "tags": [ + "WebApps" + ], + "summary": "Swaps two deployment slots of an app.", + "description": "Description for Swaps two deployment slots of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "slotSwapEntity", + "in": "body", + "description": "JSON object that contains the target slot name. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmSlotEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/snapshots": { + "get": { + "operationId": "WebApps_ListSnapshotsSlot", + "tags": [ + "WebApps" + ], + "summary": "Returns all Snapshots to the user.", + "description": "Description for Returns all Snapshots to the user.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SnapshotCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/snapshotsdr": { + "get": { + "operationId": "WebApps_ListSnapshotsFromDRSecondarySlot", + "tags": [ + "WebApps" + ], + "summary": "Returns all Snapshots to the user from DRSecondary endpoint.", + "description": "Description for Returns all Snapshots to the user from DRSecondary endpoint.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SnapshotCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/sourcecontrols/web": { + "get": { + "operationId": "WebApps_GetSourceControlSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the source control configuration of an app.", + "description": "Description for Gets the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the source control configuration for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "201": { + "description": "Resource 'SiteSourceControl' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateSourceControlSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the source control configuration of an app.", + "description": "Description for Updates the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the source control configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteSourceControl", + "in": "body", + "description": "JSON representation of a SiteSourceControl object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteSourceControl' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "201": { + "description": "Resource 'SiteSourceControl' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/SiteSourceControl" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "WebApps_UpdateSourceControlSlot", + "tags": [ + "WebApps" + ], + "summary": "Updates the source control configuration of an app.", + "description": "Description for Updates the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the source control configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "siteSourceControl", + "in": "body", + "description": "JSON representation of a SiteSourceControl object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "201": { + "description": "Resource 'SiteSourceControl' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteSourceControlSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes the source control configuration of an app.", + "description": "Description for Deletes the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the source control configuration for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "additionalFlags", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/start": { + "post": { + "operationId": "WebApps_StartSlot", + "tags": [ + "WebApps" + ], + "summary": "Starts an app (or deployment slot, if specified).", + "description": "Description for Starts an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/startNetworkTrace": { + "post": { + "operationId": "WebApps_StartNetworkTraceSlot", + "tags": [ + "WebApps" + ], + "summary": "Start capturing network packets for the site.", + "description": "Description for Start capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "durationInSeconds", + "in": "query", + "description": "The duration to keep capturing in seconds.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "maxFrameLength", + "in": "query", + "description": "The maximum frame length in bytes (Optional).", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "sasUrl", + "in": "query", + "description": "The Blob URL to store capture file.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Start a new network trace operation for a site": { + "$ref": "./examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/stop": { + "post": { + "operationId": "WebApps_StopSlot", + "tags": [ + "WebApps" + ], + "summary": "Stops an app (or deployment slot, if specified).", + "description": "Description for Stops an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/stopNetworkTrace": { + "post": { + "operationId": "WebApps_StopNetworkTraceSlot", + "tags": [ + "WebApps" + ], + "summary": "Stop ongoing capturing network packets for the site.", + "description": "Description for Stop ongoing capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Stop a currently running network trace operation for a site": { + "$ref": "./examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/sync": { + "post": { + "operationId": "WebApps_SyncRepositorySlot", + "tags": [ + "WebApps" + ], + "summary": "Sync web app repository.", + "description": "Description for Sync web app repository.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/syncfunctiontriggers": { + "post": { + "operationId": "WebApps_SyncFunctionTriggersSlot", + "tags": [ + "WebApps" + ], + "summary": "Syncs function trigger metadata to the management database", + "description": "Description for Syncs function trigger metadata to the management database", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/triggeredwebjobs": { + "get": { + "operationId": "WebApps_ListTriggeredWebJobsSlot", + "tags": [ + "WebApps" + ], + "summary": "List triggered web jobs for an app, or a deployment slot.", + "description": "Description for List triggered web jobs for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredWebJobCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/triggeredwebjobs/{webJobName}": { + "get": { + "operationId": "WebApps_GetTriggeredWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a triggered web job by its ID for an app, or a deployment slot.", + "description": "Description for Gets a triggered web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredWebJob" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteTriggeredWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Delete a triggered web job by its ID for an app, or a deployment slot.", + "description": "Description for Delete a triggered web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/triggeredwebjobs/{webJobName}/history": { + "get": { + "operationId": "WebApps_ListTriggeredWebJobHistorySlot", + "tags": [ + "WebApps" + ], + "summary": "List a triggered web job's history for an app, or a deployment slot.", + "description": "Description for List a triggered web job's history for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredJobHistoryCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/triggeredwebjobs/{webJobName}/history/{id}": { + "get": { + "operationId": "WebApps_GetTriggeredWebJobHistorySlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a triggered web job's history by its ID for an app, , or a deployment slot.", + "description": "Description for Gets a triggered web job's history by its ID for an app, , or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "History ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredJobHistory" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/triggeredwebjobs/{webJobName}/run": { + "post": { + "operationId": "WebApps_RunTriggeredWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Run a triggered web job for an app, or a deployment slot.", + "description": "Description for Run a triggered web job for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API uses the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/usages": { + "get": { + "operationId": "WebApps_ListUsagesSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the quota usage information of an app (or deployment slot, if specified).", + "description": "Description for Gets the quota usage information of an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only information specified in the filter (using OData syntax). For example: $filter=(name.value eq 'Metric1' or name.value eq 'Metric2') and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[Hour|Minute|Day]'.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmUsageQuotaCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/virtualNetworkConnections": { + "get": { + "operationId": "WebApps_ListVnetConnectionsSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets the virtual networks the app (or deployment slot) is connected to.", + "description": "Description for Gets the virtual networks the app (or deployment slot) is connected to.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named virtual network for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VnetInfoResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/virtualNetworkConnections/{vnetName}": { + "get": { + "operationId": "WebApps_GetVnetConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a virtual network the app (or deployment slot) is connected to by name.", + "description": "Description for Gets a virtual network the app (or deployment slot) is connected to by name.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named virtual network for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateVnetConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "description": "Description for Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named virtual network for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VnetInfoResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateVnetConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "description": "Description for Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named virtual network for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteVnetConnectionSlot", + "tags": [ + "WebApps" + ], + "summary": "Deletes a connection from an app (or deployment slot to a named virtual network.", + "description": "Description for Deletes a connection from an app (or deployment slot to a named virtual network.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get the named virtual network for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/virtualNetworkConnections/{vnetName}/gateways/{gatewayName}": { + "get": { + "operationId": "WebApps_GetVnetConnectionGatewaySlot", + "tags": [ + "WebApps" + ], + "summary": "Gets an app's Virtual Network gateway.", + "description": "Description for Gets an app's Virtual Network gateway.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a gateway for the production slot's Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Currently, the only supported string is \"primary\".", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateVnetConnectionGatewaySlot", + "tags": [ + "WebApps" + ], + "summary": "Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "description": "Description for Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a gateway for the production slot's Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Currently, the only supported string is \"primary\".", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The properties to update this gateway with.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetGateway" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VnetGateway' update operation succeeded", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateVnetConnectionGatewaySlot", + "tags": [ + "WebApps" + ], + "summary": "Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "description": "Description for Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API will get a gateway for the production slot's Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Currently, the only supported string is \"primary\".", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The properties to update this gateway with.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetGateway" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/webjobs": { + "get": { + "operationId": "WebApps_ListWebJobsSlot", + "tags": [ + "WebApps" + ], + "summary": "List webjobs for an app, or a deployment slot.", + "description": "Description for List webjobs for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebJobCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/webjobs/{webJobName}": { + "get": { + "operationId": "WebApps_GetWebJobSlot", + "tags": [ + "WebApps" + ], + "summary": "Get webjob information for an app, or a deployment slot.", + "description": "Description for Get webjob information for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. If a slot is not specified, the API returns deployments for the production slot.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of the web job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebJob" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/workflows": { + "get": { + "operationId": "WebApps_ListInstanceWorkflowsSlot", + "tags": [ + "WebApps" + ], + "summary": "List the workflows for a web site, or a deployment slot.", + "description": "List the workflows for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowEnvelopeCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List the workflows Slot": { + "$ref": "./examples/ListWorkflows_Slot.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/workflows/{workflowName}": { + "get": { + "operationId": "WebApps_GetInstanceWorkflowSlot", + "tags": [ + "WebApps" + ], + "summary": "Get workflow information by its ID for web site, or a deployment slot.", + "description": "Get workflow information by its ID for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "Workflow name.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 63, + "pattern": "^[a-z][a-z0-9]*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowEnvelope" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "GET a workflow Slot": { + "$ref": "./examples/GetWorkflow_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slotsdiffs": { + "post": { + "operationId": "WebApps_ListSlotDifferencesFromProduction", + "tags": [ + "WebApps" + ], + "summary": "Get the difference in configuration settings between two web app slots.", + "description": "Description for Get the difference in configuration settings between two web app slots.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slotSwapEntity", + "in": "body", + "description": "JSON object that contains the target slot name. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmSlotEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SlotDifferenceCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slotsswap": { + "post": { + "operationId": "WebApps_SwapSlotWithProduction", + "tags": [ + "WebApps" + ], + "summary": "Swaps two deployment slots of an app.", + "description": "Description for Swaps two deployment slots of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slotSwapEntity", + "in": "body", + "description": "JSON object that contains the target slot name. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmSlotEntity" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/snapshots": { + "get": { + "operationId": "WebApps_ListSnapshots", + "tags": [ + "WebApps" + ], + "summary": "Returns all Snapshots to the user.", + "description": "Description for Returns all Snapshots to the user.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SnapshotCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/snapshotsdr": { + "get": { + "operationId": "WebApps_ListSnapshotsFromDRSecondary", + "tags": [ + "WebApps" + ], + "summary": "Returns all Snapshots to the user from DRSecondary endpoint.", + "description": "Description for Returns all Snapshots to the user from DRSecondary endpoint.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SnapshotCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/sourcecontrols/web": { + "get": { + "operationId": "WebApps_GetSourceControl", + "tags": [ + "WebApps" + ], + "summary": "Gets the source control configuration of an app.", + "description": "Description for Gets the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "201": { + "description": "Resource 'SiteSourceControl' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateSourceControl", + "tags": [ + "WebApps" + ], + "summary": "Updates the source control configuration of an app.", + "description": "Description for Updates the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteSourceControl", + "in": "body", + "description": "JSON representation of a SiteSourceControl object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + } + ], + "responses": { + "200": { + "description": "Resource 'SiteSourceControl' update operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "201": { + "description": "Resource 'SiteSourceControl' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/SiteSourceControl" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "WebApps_UpdateSourceControl", + "tags": [ + "WebApps" + ], + "summary": "Updates the source control configuration of an app.", + "description": "Description for Updates the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "siteSourceControl", + "in": "body", + "description": "JSON representation of a SiteSourceControl object. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "201": { + "description": "Resource 'SiteSourceControl' create operation succeeded", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/SiteSourceControl" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteSourceControl", + "tags": [ + "WebApps" + ], + "summary": "Deletes the source control configuration of an app.", + "description": "Description for Deletes the source control configuration of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "additionalFlags", + "in": "query", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/start": { + "post": { + "operationId": "WebApps_Start", + "tags": [ + "WebApps" + ], + "summary": "Starts an app (or deployment slot, if specified).", + "description": "Description for Starts an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/startNetworkTrace": { + "post": { + "operationId": "WebApps_StartNetworkTrace", + "tags": [ + "WebApps" + ], + "summary": "Start capturing network packets for the site.", + "description": "Description for Start capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "durationInSeconds", + "in": "query", + "description": "The duration to keep capturing in seconds.", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "maxFrameLength", + "in": "query", + "description": "The maximum frame length in bytes (Optional).", + "required": false, + "type": "integer", + "format": "int32" + }, + { + "name": "sasUrl", + "in": "query", + "description": "The Blob URL to store capture file.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Start a new network trace operation for a site": { + "$ref": "./examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/stop": { + "post": { + "operationId": "WebApps_Stop", + "tags": [ + "WebApps" + ], + "summary": "Stops an app (or deployment slot, if specified).", + "description": "Description for Stops an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/stopNetworkTrace": { + "post": { + "operationId": "WebApps_StopNetworkTrace", + "tags": [ + "WebApps" + ], + "summary": "Stop ongoing capturing network packets for the site.", + "description": "Description for Stop ongoing capturing network packets for the site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Stop a currently running network trace operation for a site": { + "$ref": "./examples/StopWebSiteNetworkTrace_StopNetworkTrace.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/sync": { + "post": { + "operationId": "WebApps_SyncRepository", + "tags": [ + "WebApps" + ], + "summary": "Sync web app repository.", + "description": "Description for Sync web app repository.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/syncfunctiontriggers": { + "post": { + "operationId": "WebApps_SyncFunctionTriggers", + "tags": [ + "WebApps" + ], + "summary": "Syncs function trigger metadata to the management database", + "description": "Description for Syncs function trigger metadata to the management database", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/triggeredwebjobs": { + "get": { + "operationId": "WebApps_ListTriggeredWebJobs", + "tags": [ + "WebApps" + ], + "summary": "List triggered web jobs for an app, or a deployment slot.", + "description": "Description for List triggered web jobs for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredWebJobCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/triggeredwebjobs/{webJobName}": { + "get": { + "operationId": "WebApps_GetTriggeredWebJob", + "tags": [ + "WebApps" + ], + "summary": "Gets a triggered web job by its ID for an app, or a deployment slot.", + "description": "Description for Gets a triggered web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredWebJob" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteTriggeredWebJob", + "tags": [ + "WebApps" + ], + "summary": "Delete a triggered web job by its ID for an app, or a deployment slot.", + "description": "Description for Delete a triggered web job by its ID for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/triggeredwebjobs/{webJobName}/history": { + "get": { + "operationId": "WebApps_ListTriggeredWebJobHistory", + "tags": [ + "WebApps" + ], + "summary": "List a triggered web job's history for an app, or a deployment slot.", + "description": "Description for List a triggered web job's history for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredJobHistoryCollection" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/triggeredwebjobs/{webJobName}/history/{id}": { + "get": { + "operationId": "WebApps_GetTriggeredWebJobHistory", + "tags": [ + "WebApps" + ], + "summary": "Gets a triggered web job's history by its ID for an app, , or a deployment slot.", + "description": "Description for Gets a triggered web job's history by its ID for an app, , or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + }, + { + "name": "id", + "in": "path", + "description": "History ID.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/TriggeredJobHistory" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/triggeredwebjobs/{webJobName}/run": { + "post": { + "operationId": "WebApps_RunTriggeredWebJob", + "tags": [ + "WebApps" + ], + "summary": "Run a triggered web job for an app, or a deployment slot.", + "description": "Description for Run a triggered web job for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of Web Job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/updatemachinekey": { + "post": { + "operationId": "WebApps_UpdateMachineKey", + "tags": [ + "WebApps" + ], + "summary": "Updates the machine key of an app.", + "description": "Updates the machine key of an app.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Updates the machine key for a site": { + "$ref": "./examples/UpdateMachineKey.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/usages": { + "get": { + "operationId": "WebApps_ListUsages", + "tags": [ + "WebApps" + ], + "summary": "Gets the quota usage information of an app (or deployment slot, if specified).", + "description": "Description for Gets the quota usage information of an app (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "$filter", + "in": "query", + "description": "Return only information specified in the filter (using OData syntax). For example: $filter=(name.value eq 'Metric1' or name.value eq 'Metric2') and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[Hour|Minute|Day]'.", + "required": false, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/CsmUsageQuotaCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/virtualNetworkConnections": { + "get": { + "operationId": "WebApps_ListVnetConnections", + "tags": [ + "WebApps" + ], + "summary": "Gets the virtual networks the app (or deployment slot) is connected to.", + "description": "Description for Gets the virtual networks the app (or deployment slot) is connected to.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/VnetInfoResource" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/virtualNetworkConnections/{vnetName}": { + "get": { + "operationId": "WebApps_GetVnetConnection", + "tags": [ + "WebApps" + ], + "summary": "Gets a virtual network the app (or deployment slot) is connected to by name.", + "description": "Description for Gets a virtual network the app (or deployment slot) is connected to by name.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateVnetConnection", + "tags": [ + "WebApps" + ], + "summary": "Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "description": "Description for Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VnetInfoResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateVnetConnection", + "tags": [ + "WebApps" + ], + "summary": "Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "description": "Description for Adds a Virtual Network connection to an app or slot (PUT) or updates the connection properties (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "Properties of the Virtual Network connection. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetInfoResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteVnetConnection", + "tags": [ + "WebApps" + ], + "summary": "Deletes a connection from an app (or deployment slot to a named virtual network.", + "description": "Description for Deletes a connection from an app (or deployment slot to a named virtual network.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the virtual network.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/virtualNetworkConnections/{vnetName}/gateways/{gatewayName}": { + "get": { + "operationId": "WebApps_GetVnetConnectionGateway", + "tags": [ + "WebApps" + ], + "summary": "Gets an app's Virtual Network gateway.", + "description": "Description for Gets an app's Virtual Network gateway.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Currently, the only supported string is \"primary\".", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "put": { + "operationId": "WebApps_CreateOrUpdateVnetConnectionGateway", + "tags": [ + "WebApps" + ], + "summary": "Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "description": "Description for Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Currently, the only supported string is \"primary\".", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The properties to update this gateway with.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetGateway" + } + } + ], + "responses": { + "200": { + "description": "Resource 'VnetGateway' update operation succeeded", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "patch": { + "operationId": "WebApps_UpdateVnetConnectionGateway", + "tags": [ + "WebApps" + ], + "summary": "Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "description": "Description for Adds a gateway to a connected Virtual Network (PUT) or updates it (PATCH).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "vnetName", + "in": "path", + "description": "Name of the Virtual Network.", + "required": true, + "type": "string" + }, + { + "name": "gatewayName", + "in": "path", + "description": "Name of the gateway. Currently, the only supported string is \"primary\".", + "required": true, + "type": "string" + }, + { + "name": "connectionEnvelope", + "in": "body", + "description": "The properties to update this gateway with.", + "required": true, + "schema": { + "$ref": "#/definitions/VnetGateway" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/VnetGateway" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/webjobs": { + "get": { + "operationId": "WebApps_ListWebJobs", + "tags": [ + "WebApps" + ], + "summary": "List webjobs for an app, or a deployment slot.", + "description": "Description for List webjobs for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebJobCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/webjobs/{webJobName}": { + "get": { + "operationId": "WebApps_GetWebJob", + "tags": [ + "WebApps" + ], + "summary": "Get webjob information for an app, or a deployment slot.", + "description": "Description for Get webjob information for an app, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "webJobName", + "in": "path", + "description": "Name of the web job.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WebJob" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/workflows": { + "get": { + "operationId": "WebApps_ListWorkflows", + "tags": [ + "WebApps" + ], + "summary": "List the workflows for a web site, or a deployment slot.", + "description": "List the workflows for a web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowEnvelopeCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List the workflows": { + "$ref": "./examples/ListWorkflows.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/workflows/{workflowName}": { + "get": { + "operationId": "WebApps_GetWorkflow", + "tags": [ + "WebApps" + ], + "summary": "Get workflow information by its ID for web site, or a deployment slot.", + "description": "Get workflow information by its ID for web site, or a deployment slot.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Site name.", + "required": true, + "type": "string" + }, + { + "name": "workflowName", + "in": "path", + "description": "Workflow name.", + "required": true, + "type": "string", + "minLength": 3, + "maxLength": 63, + "pattern": "^[a-z][a-z0-9]*$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/WorkflowEnvelope" + } + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "GET a workflow": { + "$ref": "./examples/GetWorkflow.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites": { + "get": { + "operationId": "StaticSites_GetStaticSitesByResourceGroup", + "tags": [ + "StaticSites" + ], + "summary": "Gets all static sites in the specified resource group.", + "description": "Description for Gets all static sites in the specified resource group.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get static sites for a resource group": { + "$ref": "./examples/GetStaticSites.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}": { + "get": { + "operationId": "StaticSites_GetStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Gets the details of a static site.", + "description": "Description for Gets the details of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details for a static site": { + "$ref": "./examples/GetStaticSite.json" + } + } + }, + "put": { + "operationId": "StaticSites_CreateOrUpdateStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Creates a new static site in an existing resource group, or updates an existing static site.", + "description": "Description for Creates a new static site in an existing resource group, or updates an existing static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "staticSiteEnvelope", + "in": "body", + "description": "A JSON representation of the staticsite properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'StaticSiteARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/StaticSiteARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/StaticSiteARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update a static site": { + "$ref": "./examples/CreateOrUpdateStaticSite.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/StaticSiteARMResource" + }, + "x-ms-long-running-operation": true + }, + "patch": { + "operationId": "StaticSites_UpdateStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Creates a new static site in an existing resource group, or updates an existing static site.", + "description": "Description for Creates a new static site in an existing resource group, or updates an existing static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "staticSiteEnvelope", + "in": "body", + "description": "A JSON representation of the staticsite properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSitePatchResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/StaticSiteARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Patch a static site": { + "$ref": "./examples/PatchStaticSite.json" + } + } + }, + "delete": { + "operationId": "StaticSites_DeleteStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Deletes a static site.", + "description": "Description for Deletes a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a static site": { + "$ref": "./examples/DeleteStaticSite.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/basicAuth": { + "get": { + "operationId": "StaticSites_ListBasicAuth", + "tags": [ + "StaticSites" + ], + "summary": "Gets the basic auth properties for a static site as a collection.", + "description": "Description for Gets the basic auth properties for a static site as a collection.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteBasicAuthPropertiesCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Lists the basic auth properties for a static site.": { + "$ref": "./examples/ListStaticSiteBasicAuth.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/basicAuth/{basicAuthName}": { + "get": { + "operationId": "StaticSites_GetBasicAuth", + "tags": [ + "StaticSites" + ], + "summary": "Gets the basic auth properties for a static site.", + "description": "Description for Gets the basic auth properties for a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "basicAuthName", + "in": "path", + "description": "name of the basic auth entry.", + "required": true, + "type": "string", + "enum": [ + "default" + ], + "x-ms-enum": { + "name": "BasicAuthName", + "modelAsString": true, + "values": [ + { + "name": "default", + "value": "default" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteBasicAuthPropertiesARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Gets the basic auth properties for a static site.": { + "$ref": "./examples/GetStaticSiteBasicAuth.json" + } + } + }, + "put": { + "operationId": "StaticSites_CreateOrUpdateBasicAuth", + "tags": [ + "StaticSites" + ], + "summary": "Adds or updates basic auth for a static site.", + "description": "Description for Adds or updates basic auth for a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "basicAuthName", + "in": "path", + "description": "name of the basic auth entry.", + "required": true, + "type": "string", + "enum": [ + "default" + ], + "x-ms-enum": { + "name": "BasicAuthName", + "modelAsString": true, + "values": [ + { + "name": "default", + "value": "default" + } + ] + } + }, + { + "name": "basicAuthEnvelope", + "in": "body", + "description": "A JSON representation of the basic auth properties.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteBasicAuthPropertiesARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'StaticSiteBasicAuthPropertiesARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/StaticSiteBasicAuthPropertiesARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Creates or updates basic auth properties for a static site.": { + "$ref": "./examples/CreateOrUpdateStaticSiteBasicAuth.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds": { + "get": { + "operationId": "StaticSites_GetStaticSiteBuilds", + "tags": [ + "StaticSites" + ], + "summary": "Gets all static site builds for a particular static site.", + "description": "Description for Gets all static site builds for a particular static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteBuildCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get all builds for a static site": { + "$ref": "./examples/GetStaticSiteBuilds.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}": { + "get": { + "operationId": "StaticSites_GetStaticSiteBuild", + "tags": [ + "StaticSites" + ], + "summary": "Gets the details of a static site build.", + "description": "Description for Gets the details of a static site build.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteBuildARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a static site build": { + "$ref": "./examples/GetStaticSiteBuild.json" + } + } + }, + "delete": { + "operationId": "StaticSites_DeleteStaticSiteBuild", + "tags": [ + "StaticSites" + ], + "summary": "Deletes a static site build.", + "description": "Description for Deletes a static site build.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a static site build": { + "$ref": "./examples/DeleteStaticSiteBuild.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/config/appsettings": { + "put": { + "operationId": "StaticSites_CreateOrUpdateStaticSiteBuildAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Creates or updates the app settings of a static site build.", + "description": "Description for Creates or updates the app settings of a static site build.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "appSettings", + "in": "body", + "description": "The dictionary containing the static site app settings to update.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Creates or updates the function app settings of a static site build.": { + "$ref": "./examples/CreateOrUpdateStaticSiteBuildAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/config/functionappsettings": { + "put": { + "operationId": "StaticSites_CreateOrUpdateStaticSiteBuildFunctionAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Creates or updates the function app settings of a static site build.", + "description": "Description for Creates or updates the function app settings of a static site build.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "appSettings", + "in": "body", + "description": "The dictionary containing the static site function app settings to update.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Creates or updates the function app settings of a static site build.": { + "$ref": "./examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/databaseConnections": { + "get": { + "operationId": "StaticSites_GetBuildDatabaseConnections", + "tags": [ + "StaticSites" + ], + "summary": "Returns overviews of database connections for a static site build", + "description": "Returns overviews of database connections for a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List overviews of database connections for the static site build.": { + "$ref": "./examples/GetStaticSiteBuildDatabaseConnections.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/databaseConnections/{databaseConnectionName}": { + "get": { + "operationId": "StaticSites_GetBuildDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Returns overview of a database connection for a static site build by name", + "description": "Returns overview of a database connection for a static site build by name", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get overview of database connections for the static site build.": { + "$ref": "./examples/GetStaticSiteBuildDatabaseConnection.json" + } + } + }, + "put": { + "operationId": "StaticSites_CreateOrUpdateBuildDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Create or update a database connection for a static site build", + "description": "Description for Create or update a database connection for a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionRequestEnvelope", + "in": "body", + "description": "A JSON representation of the database connection request properties", + "required": true, + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DatabaseConnection' update operation succeeded", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update a database connection for a static site build": { + "$ref": "./examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json" + } + } + }, + "patch": { + "operationId": "StaticSites_UpdateBuildDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Create or update a database connection for a static site build", + "description": "Description for Create or update a database connection for a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionRequestEnvelope", + "in": "body", + "description": "A JSON representation of the database connection request properties", + "required": true, + "schema": { + "$ref": "#/definitions/DatabaseConnectionPatchRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Patch a database connection for a static site build": { + "$ref": "./examples/PatchStaticSiteBuildDatabaseConnection.json" + } + } + }, + "delete": { + "operationId": "StaticSites_DeleteBuildDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Delete a database connection for a static site build", + "description": "Delete a database connection for a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a database connection from a static site build.": { + "$ref": "./examples/DeleteStaticSiteBuildDatabaseConnection.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/databaseConnections/{databaseConnectionName}/show": { + "post": { + "operationId": "StaticSites_GetBuildDatabaseConnectionWithDetails", + "tags": [ + "StaticSites" + ], + "summary": "Returns details of a database connection for a static site build by name", + "description": "Returns details of a database connection for a static site build by name", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of database connections for the static site build.": { + "$ref": "./examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/functions": { + "get": { + "operationId": "StaticSites_ListStaticSiteBuildFunctions", + "tags": [ + "StaticSites" + ], + "summary": "Gets the functions of a particular static site build.", + "description": "Description for Gets the functions of a particular static site build.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteFunctionOverviewCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Gets the functions of a particular static site build": { + "$ref": "./examples/ListStaticSiteBuildFunctions.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/linkedBackends": { + "get": { + "operationId": "StaticSites_GetLinkedBackendsForBuild", + "tags": [ + "StaticSites" + ], + "summary": "Returns details of all backends linked to a static site build", + "description": "Returns details of all backends linked to a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendsCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the linked backends registered with a static site build.": { + "$ref": "./examples/GetLinkedBackendsForStaticSiteBuild.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/linkedBackends/{linkedBackendName}": { + "get": { + "operationId": "StaticSites_GetLinkedBackendForBuild", + "tags": [ + "StaticSites" + ], + "summary": "Returns the details of a linked backend linked to a static site build by name", + "description": "Returns the details of a linked backend linked to a static site build by name", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the linked backend registered with a static site build by name.": { + "$ref": "./examples/GetLinkedBackendForStaticSiteBuild.json" + } + } + }, + "put": { + "operationId": "StaticSites_LinkBackendToBuild", + "tags": [ + "StaticSites" + ], + "summary": "Link backend to a static site build", + "description": "Link backend to a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + }, + { + "name": "staticSiteLinkedBackendEnvelope", + "in": "body", + "description": "A JSON representation of the linked backend request properties", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Link a backend to a static site build": { + "$ref": "./examples/LinkBackendToStaticSiteBuild.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/StaticSiteLinkedBackendARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "StaticSites_UnlinkBackendFromBuild", + "tags": [ + "StaticSites" + ], + "summary": "Unlink a backend from a static site build", + "description": "Unlink a backend from a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + }, + { + "name": "isCleaningAuthConfig", + "in": "query", + "description": "Decides if auth will be removed from backend configuration", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Unlink a backend from a static site build.": { + "$ref": "./examples/UnlinkBackendFromStaticSiteBuild.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/linkedBackends/{linkedBackendName}/validate": { + "post": { + "operationId": "StaticSites_ValidateBackendForBuild", + "tags": [ + "StaticSites" + ], + "summary": "Validates that a backend can be linked to a static site build", + "description": "Validates that a backend can be linked to a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + }, + { + "name": "staticSiteLinkedBackendEnvelope", + "in": "body", + "description": "A JSON representation of the linked backend request properties", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Validate if backend can be linked to static site build.": { + "$ref": "./examples/ValidateLinkedBackendForStaticSiteBuild.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/listAppSettings": { + "post": { + "operationId": "StaticSites_ListStaticSiteBuildAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Gets the application settings of a static site build.", + "description": "Description for Gets the application settings of a static site build.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get app settings of a static site build": { + "$ref": "./examples/ListStaticSiteBuildAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/listFunctionAppSettings": { + "post": { + "operationId": "StaticSites_ListStaticSiteBuildFunctionAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Gets the application settings of a static site build.", + "description": "Description for Gets the application settings of a static site build.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get function app settings of a static site build": { + "$ref": "./examples/ListStaticSiteBuildFunctionAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/showDatabaseConnections": { + "post": { + "operationId": "StaticSites_GetBuildDatabaseConnectionsWithDetails", + "tags": [ + "StaticSites" + ], + "summary": "Returns details of database connections for a static site build", + "description": "Returns details of database connections for a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List full details of database connections for the static site build.": { + "$ref": "./examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/userProvidedFunctionApps": { + "get": { + "operationId": "StaticSites_GetUserProvidedFunctionAppsForStaticSiteBuild", + "tags": [ + "StaticSites" + ], + "summary": "Gets the details of the user provided function apps registered with a static site build", + "description": "Description for Gets the details of the user provided function apps registered with a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppsCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the user provided function apps registered with a static site build.": { + "$ref": "./examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/userProvidedFunctionApps/{functionAppName}": { + "get": { + "operationId": "StaticSites_GetUserProvidedFunctionAppForStaticSiteBuild", + "tags": [ + "StaticSites" + ], + "summary": "Gets the details of the user provided function app registered with a static site build", + "description": "Description for Gets the details of the user provided function app registered with a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string" + }, + { + "name": "functionAppName", + "in": "path", + "description": "Name of the function app registered with the static site build.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the user provided function app registered with a static site build.": { + "$ref": "./examples/GetUserProvidedFunctionAppForStaticSiteBuild.json" + } + } + }, + "put": { + "operationId": "StaticSites_RegisterUserProvidedFunctionAppWithStaticSiteBuild", + "tags": [ + "StaticSites" + ], + "summary": "Register a user provided function app with a static site build", + "description": "Description for Register a user provided function app with a static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string" + }, + { + "name": "functionAppName", + "in": "path", + "description": "Name of the function app registered with the static site build.", + "required": true, + "type": "string" + }, + { + "name": "isForced", + "in": "query", + "description": "Specify true to force the update of the auth configuration on the function app even if an AzureStaticWebApps provider is already configured on the function app. The default is false.", + "required": false, + "type": "boolean" + }, + { + "name": "staticSiteUserProvidedFunctionEnvelope", + "in": "body", + "description": "A JSON representation of the user provided function app properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'StaticSiteUserProvidedFunctionAppARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Register a user provided function app with a static site build": { + "$ref": "./examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "StaticSites_DetachUserProvidedFunctionAppFromStaticSiteBuild", + "tags": [ + "StaticSites" + ], + "summary": "Detach the user provided function app from the static site build", + "description": "Description for Detach the user provided function app from the static site build", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string" + }, + { + "name": "functionAppName", + "in": "path", + "description": "Name of the function app registered with the static site build.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Detach the user provided function app from the static site build.": { + "$ref": "./examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/zipdeploy": { + "post": { + "operationId": "StaticSites_CreateZipDeploymentForStaticSiteBuild", + "tags": [ + "StaticSites" + ], + "summary": "Deploys zipped content to a specific environment of a static site.", + "description": "Description for Deploys zipped content to a specific environment of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "environmentName", + "in": "path", + "description": "The stage site identifier.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "staticSiteZipDeploymentEnvelope", + "in": "body", + "description": "A JSON representation of the StaticSiteZipDeployment properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteZipDeploymentARMResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Deploy a site from a zipped package to a particular static site build": { + "$ref": "./examples/StaticSiteBuildZipDeploy.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/config/appsettings": { + "put": { + "operationId": "StaticSites_CreateOrUpdateStaticSiteAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Creates or updates the app settings of a static site.", + "description": "Description for Creates or updates the app settings of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "appSettings", + "in": "body", + "description": "The dictionary containing the static site app settings to update.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Creates or updates the app settings of a static site.": { + "$ref": "./examples/CreateOrUpdateStaticSiteAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/config/functionappsettings": { + "put": { + "operationId": "StaticSites_CreateOrUpdateStaticSiteFunctionAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Creates or updates the function app settings of a static site.", + "description": "Description for Creates or updates the function app settings of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "appSettings", + "in": "body", + "description": "The dictionary containing the static site function app settings to update.", + "required": true, + "schema": { + "$ref": "#/definitions/StringDictionary" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Creates or updates the function app settings of a static site.": { + "$ref": "./examples/CreateOrUpdateStaticSiteFunctionAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/createUserInvitation": { + "post": { + "operationId": "StaticSites_CreateUserRolesInvitationLink", + "tags": [ + "StaticSites" + ], + "summary": "Creates an invitation link for a user with the role", + "description": "Description for Creates an invitation link for a user with the role", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "staticSiteUserRolesInvitationEnvelope", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteUserInvitationRequestResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteUserInvitationResponseResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create an invitation link for a user for a static site": { + "$ref": "./examples/CreateUserRolesInvitationLink.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/customDomains": { + "get": { + "operationId": "StaticSites_ListStaticSiteCustomDomains", + "tags": [ + "StaticSites" + ], + "summary": "Gets all static site custom domains for a particular static site.", + "description": "Description for Gets all static site custom domains for a particular static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteCustomDomainOverviewCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List custom domains for a static site": { + "$ref": "./examples/GetStaticSiteCustomDomains.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/customDomains/{domainName}": { + "get": { + "operationId": "StaticSites_GetStaticSiteCustomDomain", + "tags": [ + "StaticSites" + ], + "summary": "Gets an existing custom domain for a particular static site.", + "description": "Description for Gets an existing custom domain for a particular static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "domainName", + "in": "path", + "description": "The custom domain name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteCustomDomainOverviewARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get custom domain for a static site": { + "$ref": "./examples/GetStaticSiteCustomDomain.json" + } + } + }, + "put": { + "operationId": "StaticSites_CreateOrUpdateStaticSiteCustomDomain", + "tags": [ + "StaticSites" + ], + "summary": "Creates a new static site custom domain in an existing resource group and static site.", + "description": "Description for Creates a new static site custom domain in an existing resource group and static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "domainName", + "in": "path", + "description": "The custom domain name.", + "required": true, + "type": "string" + }, + { + "name": "staticSiteCustomDomainRequestPropertiesEnvelope", + "in": "body", + "description": "A JSON representation of the static site custom domain request properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteCustomDomainRequestPropertiesARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'StaticSiteCustomDomainOverviewARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/StaticSiteCustomDomainOverviewARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/StaticSiteCustomDomainOverviewARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update a custom domain for a static site": { + "$ref": "./examples/CreateOrUpdateStaticSiteCustomDomain.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/StaticSiteCustomDomainOverviewARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "StaticSites_DeleteStaticSiteCustomDomain", + "tags": [ + "StaticSites" + ], + "summary": "Deletes a custom domain.", + "description": "Description for Deletes a custom domain.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "domainName", + "in": "path", + "description": "The custom domain name.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "202": { + "description": "Resource deletion accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a custom domain for a static site": { + "$ref": "./examples/DeleteStaticSiteCustomDomain.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/customDomains/{domainName}/validate": { + "post": { + "operationId": "StaticSites_ValidateCustomDomainCanBeAddedToStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Validates a particular custom domain can be added to a static site.", + "description": "Description for Validates a particular custom domain can be added to a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "domainName", + "in": "path", + "description": "The custom domain name.", + "required": true, + "type": "string" + }, + { + "name": "staticSiteCustomDomainRequestPropertiesEnvelope", + "in": "body", + "description": "A JSON representation of the static site custom domain request properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteCustomDomainRequestPropertiesARMResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Validate a custom domain for a static site": { + "$ref": "./examples/ValidateStaticSiteCustomDomain.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/databaseConnections": { + "get": { + "operationId": "StaticSites_GetDatabaseConnections", + "tags": [ + "StaticSites" + ], + "summary": "Returns overviews of database connections for a static site", + "description": "Returns overviews of database connections for a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List overviews of database connections for the static site.": { + "$ref": "./examples/GetStaticSiteDatabaseConnections.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/databaseConnections/{databaseConnectionName}": { + "get": { + "operationId": "StaticSites_GetDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Returns overview of a database connection for a static site by name", + "description": "Returns overview of a database connection for a static site by name", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get overview of database connections for the static site.": { + "$ref": "./examples/GetStaticSiteDatabaseConnection.json" + } + } + }, + "put": { + "operationId": "StaticSites_CreateOrUpdateDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Create or update a database connection for a static site", + "description": "Description for Create or update a database connection for a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionRequestEnvelope", + "in": "body", + "description": "A JSON representation of the database connection request properties", + "required": true, + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + } + ], + "responses": { + "200": { + "description": "Resource 'DatabaseConnection' update operation succeeded", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update a database connection for a static site": { + "$ref": "./examples/CreateOrUpdateStaticSiteDatabaseConnection.json" + } + } + }, + "patch": { + "operationId": "StaticSites_UpdateDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Create or update a database connection for a static site", + "description": "Description for Create or update a database connection for a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + }, + { + "name": "databaseConnectionRequestEnvelope", + "in": "body", + "description": "A JSON representation of the database connection request properties", + "required": true, + "schema": { + "$ref": "#/definitions/DatabaseConnectionPatchRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Patch a database connection for a static site": { + "$ref": "./examples/PatchStaticSiteDatabaseConnection.json" + } + } + }, + "delete": { + "operationId": "StaticSites_DeleteDatabaseConnection", + "tags": [ + "StaticSites" + ], + "summary": "Delete a database connection for a static site", + "description": "Delete a database connection for a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a database connection from a static site.": { + "$ref": "./examples/DeleteStaticSiteDatabaseConnection.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/databaseConnections/{databaseConnectionName}/show": { + "post": { + "operationId": "StaticSites_GetDatabaseConnectionWithDetails", + "tags": [ + "StaticSites" + ], + "summary": "Returns details of a database connection for a static site by name", + "description": "Returns details of a database connection for a static site by name", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "databaseConnectionName", + "in": "path", + "description": "Name of the database connection.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of database connections for the static site.": { + "$ref": "./examples/GetStaticSiteDatabaseConnectionWithDetails.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/detach": { + "post": { + "operationId": "StaticSites_DetachStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Detaches a static site.", + "description": "Description for Detaches a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Detach a static site": { + "$ref": "./examples/DetachStaticSite.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/functions": { + "get": { + "operationId": "StaticSites_ListStaticSiteFunctions", + "tags": [ + "StaticSites" + ], + "summary": "Gets the functions of a static site.", + "description": "Description for Gets the functions of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteFunctionOverviewCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Gets the functions of a static site": { + "$ref": "./examples/ListStaticSiteFunctions.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/linkedBackends": { + "get": { + "operationId": "StaticSites_GetLinkedBackends", + "tags": [ + "StaticSites" + ], + "summary": "Returns details of all backends linked to a static site", + "description": "Returns details of all backends linked to a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendsCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the linked backends registered with a static site.": { + "$ref": "./examples/GetLinkedBackendsForStaticSite.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/linkedBackends/{linkedBackendName}": { + "get": { + "operationId": "StaticSites_GetLinkedBackend", + "tags": [ + "StaticSites" + ], + "summary": "Returns the details of a linked backend linked to a static site by name", + "description": "Returns the details of a linked backend linked to a static site by name", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the linked backend registered with a static site by name.": { + "$ref": "./examples/GetLinkedBackendForStaticSite.json" + } + } + }, + "put": { + "operationId": "StaticSites_LinkBackend", + "tags": [ + "StaticSites" + ], + "summary": "Link backend to a static site", + "description": "Link backend to a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + }, + { + "name": "staticSiteLinkedBackendEnvelope", + "in": "body", + "description": "A JSON representation of the linked backend request properties", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + } + } + ], + "responses": { + "200": { + "description": "The request has succeeded.", + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Link a backend to a static site": { + "$ref": "./examples/LinkBackendToStaticSite.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/StaticSiteLinkedBackendARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "StaticSites_UnlinkBackend", + "tags": [ + "StaticSites" + ], + "summary": "Unlink a backend from a static site", + "description": "Unlink a backend from a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + }, + { + "name": "isCleaningAuthConfig", + "in": "query", + "description": "Decides if Easy Auth configuration will be removed from backend configuration", + "required": false, + "type": "boolean" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Unlink a backend from a static site.": { + "$ref": "./examples/UnlinkBackendFromStaticSite.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/linkedBackends/{linkedBackendName}/validate": { + "post": { + "operationId": "StaticSites_ValidateBackend", + "tags": [ + "StaticSites" + ], + "summary": "Validates that a backend can be linked to a static site", + "description": "Validates that a backend can be linked to a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site", + "required": true, + "type": "string" + }, + { + "name": "linkedBackendName", + "in": "path", + "description": "Name of the linked backend that should be retrieved", + "required": true, + "type": "string" + }, + { + "name": "staticSiteLinkedBackendEnvelope", + "in": "body", + "description": "A JSON representation of the linked backend request properties", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + } + } + ], + "responses": { + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Validate if backend can be linked to static site.": { + "$ref": "./examples/ValidateLinkedBackendForStaticSite.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/listAppSettings": { + "post": { + "operationId": "StaticSites_ListStaticSiteAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Gets the application settings of a static site.", + "description": "Description for Gets the application settings of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get app settings of a static site": { + "$ref": "./examples/ListStaticSiteAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/listConfiguredRoles": { + "post": { + "operationId": "StaticSites_ListStaticSiteConfiguredRoles", + "tags": [ + "StaticSites" + ], + "summary": "Lists the roles configured for the static site.", + "description": "Description for Lists the roles configured for the static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringList" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Lists the configured roles for a static site": { + "$ref": "./examples/ListStaticSiteConfiguredRoles.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/listFunctionAppSettings": { + "post": { + "operationId": "StaticSites_ListStaticSiteFunctionAppSettings", + "tags": [ + "StaticSites" + ], + "summary": "Gets the application settings of a static site.", + "description": "Description for Gets the application settings of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get function app settings of a static site": { + "$ref": "./examples/ListStaticSiteFunctionAppSettings.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/listSecrets": { + "post": { + "operationId": "StaticSites_ListStaticSiteSecrets", + "tags": [ + "StaticSites" + ], + "summary": "Lists the secrets for an existing static site.", + "description": "Description for Lists the secrets for an existing static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StringDictionary" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List secrets for a static site": { + "$ref": "./examples/ListStaticSiteSecrets.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/privateEndpointConnections": { + "get": { + "operationId": "StaticSites_GetPrivateEndpointConnectionList", + "tags": [ + "StaticSites" + ], + "summary": "Gets the list of private endpoint connections associated with a static site", + "description": "Description for Gets the list of private endpoint connections associated with a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateEndpointConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a list of private endpoint connections associated with a site.": { + "$ref": "./examples/GetSitePrivateEndpointConnectionList.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/privateEndpointConnections/{privateEndpointConnectionName}": { + "get": { + "operationId": "StaticSites_GetPrivateEndpointConnection", + "tags": [ + "StaticSites" + ], + "summary": "Gets a private endpoint connection", + "description": "Description for Gets a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a private endpoint connection for a site.": { + "$ref": "./examples/GetSitePrivateEndpointConnection_StaticSites.json" + } + } + }, + "put": { + "operationId": "StaticSites_ApproveOrRejectPrivateEndpointConnection", + "tags": [ + "StaticSites" + ], + "summary": "Approves or rejects a private endpoint connection", + "description": "Description for Approves or rejects a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointWrapper", + "in": "body", + "description": "Request body.", + "required": true, + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'RemotePrivateEndpointConnectionARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Approves or rejects a private endpoint connection for a site.": { + "$ref": "./examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/RemotePrivateEndpointConnectionARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "StaticSites_DeletePrivateEndpointConnection", + "tags": [ + "StaticSites" + ], + "summary": "Deletes a private endpoint connection", + "description": "Description for Deletes a private endpoint connection", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "privateEndpointConnectionName", + "in": "path", + "description": "Name of the private endpoint connection.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": {} + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": {}, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "204": { + "description": "There is no content to send for this request, but the headers may be useful. ", + "schema": {} + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a private endpoint connection for a site.": { + "$ref": "./examples/DeleteSitePrivateEndpointConnection_StaticSites.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/privateLinkResources": { + "get": { + "operationId": "StaticSites_GetPrivateLinkResources", + "tags": [ + "StaticSites" + ], + "summary": "Gets the private link resources", + "description": "Description for Gets the private link resources", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/PrivateLinkResourcesWrapper" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get private link resources of a site": { + "$ref": "./examples/GetSitePrivateLinkResources.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/resetapikey": { + "post": { + "operationId": "StaticSites_ResetStaticSiteApiKey", + "tags": [ + "StaticSites" + ], + "summary": "Resets the api key for an existing static site.", + "description": "Description for Resets the api key for an existing static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "resetPropertiesEnvelope", + "in": "body", + "description": "", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteResetPropertiesARMResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Reset the api key for a static site": { + "$ref": "./examples/ResetStaticSiteApiKey.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/showDatabaseConnections": { + "post": { + "operationId": "StaticSites_GetDatabaseConnectionsWithDetails", + "tags": [ + "StaticSites" + ], + "summary": "Returns details of database connections for a static site", + "description": "Returns details of database connections for a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/DatabaseConnectionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List full details of database connections for the static site.": { + "$ref": "./examples/GetStaticSiteDatabaseConnectionsWithDetails.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/userProvidedFunctionApps": { + "get": { + "operationId": "StaticSites_GetUserProvidedFunctionAppsForStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Gets the details of the user provided function apps registered with a static site", + "description": "Description for Gets the details of the user provided function apps registered with a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppsCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the user provided function apps registered with a static site.": { + "$ref": "./examples/GetUserProvidedFunctionAppsForStaticSite.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/userProvidedFunctionApps/{functionAppName}": { + "get": { + "operationId": "StaticSites_GetUserProvidedFunctionAppForStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Gets the details of the user provided function app registered with a static site", + "description": "Description for Gets the details of the user provided function app registered with a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "functionAppName", + "in": "path", + "description": "Name of the function app registered with the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get details of the user provided function app registered with a static site.": { + "$ref": "./examples/GetUserProvidedFunctionAppForStaticSite.json" + } + } + }, + "put": { + "operationId": "StaticSites_RegisterUserProvidedFunctionAppWithStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Register a user provided function app with a static site", + "description": "Description for Register a user provided function app with a static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "functionAppName", + "in": "path", + "description": "Name of the function app registered with the static site.", + "required": true, + "type": "string" + }, + { + "name": "isForced", + "in": "query", + "description": "Specify true to force the update of the auth configuration on the function app even if an AzureStaticWebApps provider is already configured on the function app. The default is false.", + "required": false, + "type": "boolean" + }, + { + "name": "staticSiteUserProvidedFunctionEnvelope", + "in": "body", + "description": "A JSON representation of the user provided function app properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + } + } + ], + "responses": { + "200": { + "description": "Resource 'StaticSiteUserProvidedFunctionAppARMResource' update operation succeeded", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + } + }, + "202": { + "description": "The request has been accepted for processing, but processing has not yet completed.", + "schema": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + }, + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Register a user provided function app with a static site": { + "$ref": "./examples/RegisterUserProvidedFunctionAppWithStaticSite.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location", + "final-state-schema": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + }, + "x-ms-long-running-operation": true + }, + "delete": { + "operationId": "StaticSites_DetachUserProvidedFunctionAppFromStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Detach the user provided function app from the static site", + "description": "Description for Detach the user provided function app from the static site", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "functionAppName", + "in": "path", + "description": "Name of the function app registered with the static site.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Resource deleted successfully." + }, + "204": { + "description": "Resource does not exist." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Detach the user provided function app from the static site.": { + "$ref": "./examples/DetachUserProvidedFunctionAppFromStaticSite.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/zipdeploy": { + "post": { + "operationId": "StaticSites_CreateZipDeploymentForStaticSite", + "tags": [ + "StaticSites" + ], + "summary": "Deploys zipped content to a static site.", + "description": "Description for Deploys zipped content to a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the static site.", + "required": true, + "type": "string" + }, + { + "name": "staticSiteZipDeploymentEnvelope", + "in": "body", + "description": "A JSON representation of the StaticSiteZipDeployment properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteZipDeploymentARMResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "202": { + "description": "Resource operation accepted.", + "headers": { + "Location": { + "type": "string", + "description": "The Location header contains the URL where the status of the long running operation can be checked." + }, + "Retry-After": { + "type": "integer", + "format": "int32", + "description": "The Retry-After header can indicate how long the client should wait before polling the operation status." + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Deploy a site from a zipped package": { + "$ref": "./examples/StaticSiteZipDeploy.json" + } + }, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/validate": { + "post": { + "operationId": "Validate", + "summary": "Validate if a resource can be created.", + "description": "Description for Validate if a resource can be created.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "validateRequest", + "in": "body", + "description": "Request with the resources to validate.", + "required": true, + "schema": { + "$ref": "#/definitions/ValidateRequest" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ValidateResponse" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/hostingEnvironments/{name}/diagnostics/{diagnosticsName}": { + "get": { + "operationId": "AppServiceEnvironments_GetDiagnosticsItem", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get a diagnostics item for an App Service Environment.", + "description": "Description for Get a diagnostics item for an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "diagnosticsName", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/HostingEnvironmentDiagnostics" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get a diagnostics item for an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_GetDiagnosticsItem.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/hostingEnvironments/{name}/multiRolePools/default/instances/{instance}/metricdefinitions": { + "get": { + "operationId": "AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get metric definitions for a specific instance of a multi-role pool of an App Service Environment.", + "description": "Description for Get metric definitions for a specific instance of a multi-role pool of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "instance", + "in": "path", + "description": "Name of the instance in the multi-role pool.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceMetricDefinitionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get metric definitions for a specific instance of a multi-role pool of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/hostingEnvironments/{name}/workerPools/{workerPoolName}/instances/{instance}/metricdefinitions": { + "get": { + "operationId": "AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions", + "tags": [ + "AppServiceEnvironments" + ], + "summary": "Get metric definitions for a specific instance of a worker pool of an App Service Environment.", + "description": "Description for Get metric definitions for a specific instance of a worker pool of an App Service Environment.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the App Service Environment.", + "required": true, + "type": "string" + }, + { + "name": "workerPoolName", + "in": "path", + "description": "Name of the worker pool.", + "required": true, + "type": "string" + }, + { + "name": "instance", + "in": "path", + "description": "Name of the instance in the worker pool.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/ResourceMetricDefinitionCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get metric definitions for a specific instance of a worker pool of an App Service Environment.": { + "$ref": "./examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/serverfarms/{name}/workers/{workerName}/reboot": { + "post": { + "operationId": "AppServicePlans_RebootWorker", + "tags": [ + "AppServicePlans" + ], + "summary": "Reboot a worker machine in an App Service plan.", + "description": "Description for Reboot a worker machine in an App Service plan.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "workerName", + "in": "path", + "description": "Name of worker machine, which typically starts with RD.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/serverfarms/{name}/workers/{workerName}/recycleinstance": { + "post": { + "operationId": "AppServicePlans_RecycleManagedInstanceWorker", + "tags": [ + "AppServicePlans" + ], + "summary": "Recycles a managed instance worker machine.", + "description": "Description for Recycles a managed instance worker machine.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "App Service plan.", + "required": true, + "type": "string" + }, + { + "name": "workerName", + "in": "path", + "description": "Name of worker machine, which typically starts with RD.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]+$" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/Operation" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/functions/{functionName}/keys/{keyName}": { + "put": { + "operationId": "WebApps_CreateOrUpdateFunctionSecret", + "tags": [ + "WebApps" + ], + "summary": "Add or update a function secret.", + "description": "Description for Add or update a function secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "key", + "in": "body", + "description": "The key to create or update", + "required": true, + "schema": { + "$ref": "#/definitions/KeyInfo" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "201": { + "description": "Resource 'KeyInfo' create operation succeeded", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteFunctionSecret", + "tags": [ + "WebApps" + ], + "summary": "Delete a function secret.", + "description": "Description for Delete a function secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "functionName", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/host/default/{keyType}/{keyName}": { + "put": { + "operationId": "WebApps_CreateOrUpdateHostSecret", + "tags": [ + "WebApps" + ], + "summary": "Add or update a host level secret.", + "description": "Description for Add or update a host level secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "keyType", + "in": "path", + "description": "The type of host key.", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "description": "The name of the key.", + "required": true, + "type": "string" + }, + { + "name": "key", + "in": "body", + "description": "The key to create or update", + "required": true, + "schema": { + "$ref": "#/definitions/KeyInfo" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "201": { + "description": "Resource 'KeyInfo' create operation succeeded", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteHostSecret", + "tags": [ + "WebApps" + ], + "summary": "Delete a host level secret.", + "description": "Description for Delete a host level secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "keyType", + "in": "path", + "description": "The type of host key.", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "description": "The name of the key.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/networkTrace/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTraces", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get NetworkTraces for a site": { + "$ref": "./examples/GetWebSiteNetworkTraces.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/networkTrace/operationresults/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTraceOperation", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the current status of a network trace operation for a site": { + "$ref": "./examples/GetWebSiteNetworkTraceOperation.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/networkTraces/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTracesV2", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get NetworkTraces for a site": { + "$ref": "./examples/GetWebSiteNetworkTraces_SlotV2.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/networkTraces/current/operationresults/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTraceOperationV2", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the current status of a network trace operation for a site": { + "$ref": "./examples/GetWebSiteNetworkTraceOperation_V2.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/slots/{slot}/host/default/{keyType}/{keyName}": { + "put": { + "operationId": "WebApps_CreateOrUpdateHostSecretSlot", + "tags": [ + "WebApps" + ], + "summary": "Add or update a host level secret.", + "description": "Description for Add or update a host level secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "keyType", + "in": "path", + "description": "The type of host key.", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "description": "The name of the key.", + "required": true, + "type": "string" + }, + { + "name": "key", + "in": "body", + "description": "The key to create or update", + "required": true, + "schema": { + "$ref": "#/definitions/KeyInfo" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "201": { + "description": "Resource 'KeyInfo' create operation succeeded", + "schema": { + "$ref": "#/definitions/KeyInfo" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + }, + "delete": { + "operationId": "WebApps_DeleteHostSecretSlot", + "tags": [ + "WebApps" + ], + "summary": "Delete a host level secret.", + "description": "Description for Delete a host level secret.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "keyType", + "in": "path", + "description": "The type of host key.", + "required": true, + "type": "string" + }, + { + "name": "keyName", + "in": "path", + "description": "The name of the key.", + "required": true, + "type": "string" + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "404": { + "description": "The server cannot find the requested resource.", + "x-ms-error-response": true + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/slots/{slot}/networkTrace/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTracesSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get NetworkTraces for a site": { + "$ref": "./examples/GetWebSiteNetworkTraces_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/slots/{slot}/networkTrace/operationresults/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTraceOperationSlot", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the current status of a network trace operation for a site": { + "$ref": "./examples/GetWebSiteNetworkTraceOperation_Slot.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/slots/{slot}/networkTraces/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTracesSlotV2", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get NetworkTraces for a site": { + "$ref": "./examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/sites/{name}/slots/{slot}/networkTraces/current/operationresults/{operationId}": { + "get": { + "operationId": "WebApps_GetNetworkTraceOperationSlotV2", + "tags": [ + "WebApps" + ], + "summary": "Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "description": "Description for Gets a named operation for a network trace capturing (or deployment slot, if specified).", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "description": "Name of the app.", + "required": true, + "type": "string" + }, + { + "name": "slot", + "in": "path", + "description": "Name of the deployment slot. By default, this API returns the production slot.", + "required": true, + "type": "string" + }, + { + "name": "operationId", + "in": "path", + "description": "GUID of the operation.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "202": { + "description": "Azure operation completed successfully.", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkTrace" + } + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Get the current status of a network trace operation for a site": { + "$ref": "./examples/GetWebSiteNetworkTraceOperation_SlotV2.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/staticSites/{name}/authproviders/{authprovider}/listUsers": { + "post": { + "operationId": "StaticSites_ListStaticSiteUsers", + "tags": [ + "StaticSites" + ], + "summary": "Gets the list of users of a static site.", + "description": "Description for Gets the list of users of a static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "authprovider", + "in": "path", + "description": "The auth provider for the users.", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteUserCollection" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "List users for a static site": { + "$ref": "./examples/ListStaticSiteUsers.json" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Web/staticSites/{name}/authproviders/{authprovider}/users/{userid}": { + "patch": { + "operationId": "StaticSites_UpdateStaticSiteUser", + "tags": [ + "StaticSites" + ], + "summary": "Updates a user entry with the listed roles", + "description": "Description for Updates a user entry with the listed roles", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "authprovider", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "userid", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "staticSiteUserEnvelope", + "in": "body", + "description": "A JSON representation of the StaticSiteUser properties. See example.", + "required": true, + "schema": { + "$ref": "#/definitions/StaticSiteUserARMResource" + } + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully.", + "schema": { + "$ref": "#/definitions/StaticSiteUserARMResource" + } + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Create or update a user for a static site": { + "$ref": "./examples/UpdateStaticSiteUser.json" + } + } + }, + "delete": { + "operationId": "StaticSites_DeleteStaticSiteUser", + "tags": [ + "StaticSites" + ], + "summary": "Deletes the user entry from the static site.", + "description": "Description for Deletes the user entry from the static site.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "authprovider", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "userid", + "in": "path", + "required": true, + "type": "string" + } + ], + "responses": { + "200": { + "description": "Azure operation completed successfully." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete a user for a static site": { + "$ref": "./examples/DeleteStaticSiteUser.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/validateMoveResources": { + "post": { + "operationId": "ValidateMove", + "summary": "Validate whether a resource can be moved.", + "description": "Description for Validate whether a resource can be moved.", + "parameters": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" + }, + { + "name": "moveResourceEnvelope", + "in": "body", + "description": "Object that represents the resource to move.", + "required": true, + "schema": { + "$ref": "#/definitions/CsmMoveResourceEnvelope" + } + } + ], + "responses": { + "204": { + "description": "There is no content to send for this request, but the headers may be useful." + }, + "default": { + "description": "An unexpected error response.", + "schema": { + "$ref": "#/definitions/DefaultErrorResponse" + } + } + } + } + } + }, + "definitions": { + "AbnormalTimePeriod": { + "type": "object", + "description": "Class representing Abnormal Time Period identified in diagnosis", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the downtime" + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the downtime" + }, + "events": { + "type": "array", + "description": "List of Possible Cause of downtime", + "items": { + "$ref": "#/definitions/DetectorAbnormalTimePeriod" + }, + "x-ms-identifiers": [] + }, + "solutions": { + "type": "array", + "description": "List of proposed solutions", + "items": { + "$ref": "#/definitions/Solution" + } + } + } + }, + "AddressResponse": { + "type": "object", + "description": "Describes main public IP address and any extra virtual IPs.", + "properties": { + "properties": { + "$ref": "#/definitions/AddressResponseProperties", + "description": "AddressResponse resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "AddressResponseProperties": { + "type": "object", + "description": "AddressResponse resource specific properties", + "properties": { + "serviceIpAddress": { + "type": "string", + "description": "Main public virtual IP." + }, + "internalIpAddress": { + "type": "string", + "description": "Virtual Network internal IP address of the App Service Environment if it is in internal load-balancing mode." + }, + "outboundIpAddresses": { + "type": "array", + "description": "IP addresses appearing on outbound connections.", + "items": { + "type": "string" + } + }, + "vipMappings": { + "type": "array", + "description": "Additional virtual IPs.", + "items": { + "$ref": "#/definitions/VirtualIPMapping" + }, + "x-ms-identifiers": [ + "virtualIP" + ] + } + } + }, + "AiGateway": { + "type": "object", + "description": "An AI gateway resource.", + "properties": { + "properties": { + "$ref": "#/definitions/AiGatewayProperties", + "description": "The resource-specific properties for this resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "AiGatewayListResult": { + "type": "object", + "description": "The response of a AiGateway list operation.", + "properties": { + "value": { + "type": "array", + "description": "The AiGateway items on this page", + "items": { + "$ref": "#/definitions/AiGateway" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "AiGatewayProperties": { + "type": "object", + "description": "The properties of an AI gateway.", + "properties": { + "aiGatewayId": { + "type": "string", + "description": "The description of the resource.", + "readOnly": true + } + } + }, + "AiGatewayTagsUpdate": { + "type": "object", + "description": "The type used for updating tags in AiGateway resources.", + "properties": { + "tags": { + "type": "object", + "description": "Resource tags.", + "additionalProperties": { + "type": "string" + } + } + } + }, + "AllowedAudiencesValidation": { + "type": "object", + "description": "The configuration settings of the Allowed Audiences validation flow.", + "properties": { + "allowedAudiences": { + "type": "array", + "description": "The configuration settings of the allowed list of audiences from which to validate the JWT token.", + "items": { + "type": "string" + } + } + } + }, + "AllowedPrincipals": { + "type": "object", + "description": "The configuration settings of the Azure Active Directory allowed principals.", + "properties": { + "groups": { + "type": "array", + "description": "The list of the allowed groups.", + "items": { + "type": "string" + } + }, + "identities": { + "type": "array", + "description": "The list of the allowed identities.", + "items": { + "type": "string" + } + } + } + }, + "AnalysisData": { + "type": "object", + "description": "Class Representing Detector Evidence used for analysis", + "properties": { + "source": { + "type": "string", + "description": "Name of the Detector" + }, + "detectorDefinition": { + "$ref": "#/definitions/DetectorDefinition", + "description": "Detector Definition" + }, + "metrics": { + "type": "array", + "description": "Source Metrics", + "items": { + "$ref": "#/definitions/DiagnosticMetricSet" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "data": { + "type": "array", + "description": "Additional Source Data", + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/NameValuePair" + } + }, + "x-ms-identifiers": [ + "name" + ] + }, + "detectorMetaData": { + "$ref": "#/definitions/ResponseMetaData", + "description": "Detector Meta Data" + } + } + }, + "AnalysisDefinition": { + "type": "object", + "description": "Definition of Analysis", + "properties": { + "properties": { + "$ref": "#/definitions/AnalysisDefinitionProperties", + "description": "AnalysisDefinition resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "AnalysisDefinitionProperties": { + "type": "object", + "description": "AnalysisDefinition resource specific properties", + "properties": { + "description": { + "type": "string", + "description": "Description of the Analysis", + "readOnly": true + } + } + }, + "ApiDefinitionInfo": { + "type": "object", + "description": "Information about the formal API definition for the app.", + "properties": { + "url": { + "type": "string", + "description": "The URL of the API definition." + } + } + }, + "ApiKVReference": { + "type": "object", + "description": "Description of site key vault references.", + "properties": { + "properties": { + "$ref": "#/definitions/ApiKVReferenceProperties", + "description": "ApiKVReference resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ApiKVReferenceCollection": { + "type": "object", + "description": "Paged collection of ApiKVReference items", + "properties": { + "value": { + "type": "array", + "description": "The ApiKVReference items on this page", + "items": { + "$ref": "#/definitions/ApiKVReference" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ApiKVReferenceProperties": { + "type": "object", + "description": "ApiKVReference resource specific properties", + "properties": { + "reference": { + "type": "string" + }, + "status": { + "$ref": "#/definitions/ResolveStatus" + }, + "vaultName": { + "type": "string" + }, + "secretName": { + "type": "string" + }, + "secretVersion": { + "type": "string" + }, + "identityType": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "Managed service identity." + }, + "details": { + "type": "string" + }, + "source": { + "type": "string", + "enum": [ + "KeyVault" + ], + "x-ms-enum": { + "modelAsString": false + } + }, + "activeVersion": { + "type": "string" + } + } + }, + "ApiManagementConfig": { + "type": "object", + "description": "Azure API management (APIM) configuration linked to the app.", + "properties": { + "id": { + "type": "string", + "description": "APIM-Api Identifier." + } + } + }, + "AppInsightsWebAppStackSettings": { + "type": "object", + "description": "App Insights Web App stack settings.", + "properties": { + "isSupported": { + "type": "boolean", + "description": "true if remote Application Insights is supported for the stack; otherwise, false.", + "readOnly": true + }, + "isDefaultOff": { + "type": "boolean", + "description": "true if Application Insights is disabled by default for the stack; otherwise, false.", + "readOnly": true + } + } + }, + "AppLogsConfiguration": { + "type": "object", + "properties": { + "destination": { + "type": "string" + }, + "logAnalyticsConfiguration": { + "$ref": "#/definitions/LogAnalyticsConfiguration" + } + } + }, + "AppRegistration": { + "type": "object", + "description": "The configuration settings of the app registration for providers that have app ids and app secrets", + "properties": { + "appId": { + "type": "string", + "description": "The App ID of the app used for login." + }, + "appSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the app secret." + } + } + }, + "AppServiceEnvironment": { + "type": "object", + "description": "Description of an App Service Environment.", + "properties": { + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of the App Service Environment.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/HostingEnvironmentStatus", + "description": "Current status of the App Service Environment.", + "readOnly": true + }, + "virtualNetwork": { + "$ref": "#/definitions/VirtualNetworkProfile", + "description": "Description of the Virtual Network." + }, + "internalLoadBalancingMode": { + "$ref": "#/definitions/LoadBalancingMode", + "description": "Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment." + }, + "multiSize": { + "type": "string", + "description": "Front-end VM size, e.g. \"Medium\", \"Large\"." + }, + "multiRoleCount": { + "type": "integer", + "format": "int32", + "description": "Number of front-end instances.", + "readOnly": true + }, + "ipsslAddressCount": { + "type": "integer", + "format": "int32", + "description": "Number of IP SSL addresses reserved for the App Service Environment." + }, + "dnsSuffix": { + "type": "string", + "description": "DNS suffix of the App Service Environment." + }, + "maximumNumberOfMachines": { + "type": "integer", + "format": "int32", + "description": "Maximum number of VMs in the App Service Environment.", + "readOnly": true + }, + "frontEndScaleFactor": { + "type": "integer", + "format": "int32", + "description": "Scale factor for front-ends." + }, + "suspended": { + "type": "boolean", + "description": "true if the App Service Environment is suspended; otherwise, false. The environment can be suspended, e.g. when the management endpoint is no longer available\n(most likely because NSG blocked the incoming traffic).", + "readOnly": true + }, + "clusterSettings": { + "type": "array", + "description": "Custom settings for changing the behavior of the App Service Environment.", + "items": { + "$ref": "#/definitions/NameValuePair" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "userWhitelistedIpRanges": { + "type": "array", + "description": "User added ip ranges to whitelist on ASE db", + "items": { + "type": "string" + } + }, + "hasLinuxWorkers": { + "type": "boolean", + "description": "Flag that displays whether an ASE has linux workers or not", + "readOnly": true + }, + "upgradePreference": { + "type": "string", + "description": "Upgrade Preference", + "default": "None", + "enum": [ + "None", + "Early", + "Late", + "Manual" + ], + "x-ms-enum": { + "name": "UpgradePreference", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None", + "description": "No preference on when this App Service Environment will be upgraded" + }, + { + "name": "Early", + "value": "Early", + "description": "This App Service Environment will be upgraded before others in the same region that have Upgrade Preference 'Late'" + }, + { + "name": "Late", + "value": "Late", + "description": "This App Service Environment will be upgraded after others in the same region that have Upgrade Preference 'Early'" + }, + { + "name": "Manual", + "value": "Manual", + "description": "ASEv3 only. Once an upgrade is available, this App Service Environment will wait 10 days for the upgrade to be manually initiated. After 10 days the upgrade will begin automatically" + } + ] + } + }, + "dedicatedHostCount": { + "type": "integer", + "format": "int32", + "description": "Dedicated Host Count" + }, + "zoneRedundant": { + "type": "boolean", + "description": "Whether or not this App Service Environment is zone-redundant." + }, + "customDnsSuffixConfiguration": { + "$ref": "#/definitions/CustomDnsSuffixConfiguration", + "description": "Full view of the custom domain suffix configuration for ASEv3." + }, + "networkingConfiguration": { + "$ref": "#/definitions/AseV3NetworkingConfiguration", + "description": "Full view of networking configuration for an ASE." + }, + "upgradeAvailability": { + "$ref": "#/definitions/UpgradeAvailability", + "description": "Whether an upgrade is available for this App Service Environment.", + "readOnly": true + } + }, + "required": [ + "virtualNetwork" + ] + }, + "AppServiceEnvironmentCollection": { + "type": "object", + "description": "Collection of App Service Environments.", + "properties": { + "value": { + "type": "array", + "description": "The AppServiceEnvironmentResource items on this page", + "items": { + "$ref": "#/definitions/AppServiceEnvironmentResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "AppServiceEnvironmentPatchResource": { + "type": "object", + "description": "ARM resource for a app service environment.", + "properties": { + "properties": { + "$ref": "#/definitions/AppServiceEnvironment", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "AppServiceEnvironmentResource": { + "type": "object", + "description": "App Service Environment ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/AppServiceEnvironment", + "description": "Core resource properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "AppServicePlan": { + "type": "object", + "description": "App Service plan.", + "properties": { + "properties": { + "$ref": "#/definitions/AppServicePlanProperties", + "description": "AppServicePlan resource specific properties", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/SkuDescription", + "description": "Description of a SKU for a scalable resource." + }, + "extendedLocation": { + "$ref": "#/definitions/ExtendedLocation", + "description": "Extended Location." + }, + "kind": { + "type": "string", + "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind." + }, + "identity": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "Managed service identity." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "AppServicePlanCollection": { + "type": "object", + "description": "Collection of App Service plans.", + "properties": { + "value": { + "type": "array", + "description": "The AppServicePlan items on this page", + "items": { + "$ref": "#/definitions/AppServicePlan" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "AppServicePlanPatchResource": { + "type": "object", + "description": "ARM resource for a app service plan.", + "properties": { + "properties": { + "$ref": "#/definitions/AppServicePlanPatchResourceProperties", + "description": "AppServicePlanPatchResource resource specific properties", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "Managed service identity." + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "AppServicePlanPatchResourceProperties": { + "type": "object", + "description": "AppServicePlanPatchResource resource specific properties", + "properties": { + "workerTierName": { + "type": "string", + "description": "Target worker tier assigned to the App Service plan." + }, + "status": { + "$ref": "#/definitions/StatusOptions", + "description": "App Service plan status.", + "readOnly": true + }, + "subscription": { + "type": "string", + "description": "App Service plan subscription.", + "readOnly": true + }, + "hostingEnvironmentProfile": { + "$ref": "#/definitions/HostingEnvironmentProfile", + "description": "Specification for the App Service Environment to use for the App Service plan.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "maximumNumberOfWorkers": { + "type": "integer", + "format": "int32", + "description": "Maximum number of instances that can be assigned to this App Service plan.", + "readOnly": true + }, + "numberOfWorkers": { + "type": "integer", + "format": "int32", + "description": "The number of instances that are assigned to this App Service plan.", + "readOnly": true + }, + "geoRegion": { + "type": "string", + "description": "Geographical location for the App Service plan.", + "readOnly": true + }, + "perSiteScaling": { + "type": "boolean", + "description": "If true, apps assigned to this App Service plan can be scaled independently.\nIf false, apps assigned to this App Service plan will scale to all instances of the plan.", + "default": false + }, + "elasticScaleEnabled": { + "type": "boolean", + "description": "ServerFarm supports ElasticScale. Apps in this plan will scale as if the ServerFarm was ElasticPremium sku" + }, + "maximumElasticWorkerCount": { + "type": "integer", + "format": "int32", + "description": "Maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan" + }, + "numberOfSites": { + "type": "integer", + "format": "int32", + "description": "Number of apps assigned to this App Service plan.", + "readOnly": true + }, + "isSpot": { + "type": "boolean", + "description": "If true, this App Service Plan owns spot instances." + }, + "spotExpirationTime": { + "type": "string", + "format": "date-time", + "description": "The time when the server farm expires. Valid only if it is a spot server farm." + }, + "freeOfferExpirationTime": { + "type": "string", + "format": "date-time", + "description": "The time when the server farm free offer expires." + }, + "resourceGroup": { + "type": "string", + "description": "Resource group of the App Service plan.", + "readOnly": true + }, + "reserved": { + "type": "boolean", + "description": "If Linux app service plan true, false otherwise.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "isXenon": { + "type": "boolean", + "description": "Obsolete: If Hyper-V container app service plan true, false otherwise.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "hyperV": { + "type": "boolean", + "description": "If Hyper-V container app service plan true, false otherwise.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "targetWorkerCount": { + "type": "integer", + "format": "int32", + "description": "Scaling worker count." + }, + "targetWorkerSizeId": { + "type": "integer", + "format": "int32", + "description": "Scaling worker size ID." + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of the App Service Plan.", + "readOnly": true + }, + "kubeEnvironmentProfile": { + "$ref": "#/definitions/KubeEnvironmentProfile", + "description": "Specification for the Kubernetes Environment to use for the App Service plan." + }, + "zoneRedundant": { + "type": "boolean", + "description": "If true, this App Service Plan will perform availability zone balancing.\nIf false, this App Service Plan will not perform availability zone balancing.", + "default": false + } + } + }, + "AppServicePlanProperties": { + "type": "object", + "description": "AppServicePlan resource specific properties", + "properties": { + "workerTierName": { + "type": "string", + "description": "Target worker tier assigned to the App Service plan." + }, + "status": { + "$ref": "#/definitions/StatusOptions", + "description": "App Service plan status.", + "readOnly": true + }, + "subscription": { + "type": "string", + "description": "App Service plan subscription.", + "readOnly": true + }, + "hostingEnvironmentProfile": { + "$ref": "#/definitions/HostingEnvironmentProfile", + "description": "Specification for the App Service Environment to use for the App Service plan.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "maximumNumberOfWorkers": { + "type": "integer", + "format": "int32", + "description": "Maximum number of instances that can be assigned to this App Service plan.", + "readOnly": true + }, + "numberOfWorkers": { + "type": "integer", + "format": "int32", + "description": "The number of instances that are assigned to this App Service plan.", + "readOnly": true + }, + "geoRegion": { + "type": "string", + "description": "Geographical location for the App Service plan.", + "readOnly": true + }, + "perSiteScaling": { + "type": "boolean", + "description": "If true, apps assigned to this App Service plan can be scaled independently.\nIf false, apps assigned to this App Service plan will scale to all instances of the plan." + }, + "elasticScaleEnabled": { + "type": "boolean", + "description": "ServerFarm supports ElasticScale. Apps in this plan will scale as if the ServerFarm was ElasticPremium sku" + }, + "maximumElasticWorkerCount": { + "type": "integer", + "format": "int32", + "description": "Maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan" + }, + "numberOfSites": { + "type": "integer", + "format": "int32", + "description": "Number of apps assigned to this App Service plan.", + "readOnly": true + }, + "isSpot": { + "type": "boolean", + "description": "If true, this App Service Plan owns spot instances." + }, + "spotExpirationTime": { + "type": "string", + "format": "date-time", + "description": "The time when the server farm expires. Valid only if it is a spot server farm." + }, + "freeOfferExpirationTime": { + "type": "string", + "format": "date-time", + "description": "The time when the server farm free offer expires." + }, + "resourceGroup": { + "type": "string", + "description": "Resource group of the App Service plan.", + "readOnly": true + }, + "reserved": { + "type": "boolean", + "description": "If Linux app service plan true, false otherwise.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "isXenon": { + "type": "boolean", + "description": "Obsolete: If Hyper-V container app service plan true, false otherwise.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "hyperV": { + "type": "boolean", + "description": "If Hyper-V container app service plan true, false otherwise.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "targetWorkerCount": { + "type": "integer", + "format": "int32", + "description": "Scaling worker count." + }, + "targetWorkerSizeId": { + "type": "integer", + "format": "int32", + "description": "Scaling worker size ID." + }, + "provisioningState": { + "$ref": "#/definitions/ProvisioningState", + "description": "Provisioning state of the App Service Plan.", + "readOnly": true + }, + "kubeEnvironmentProfile": { + "$ref": "#/definitions/KubeEnvironmentProfile", + "description": "Specification for the Kubernetes Environment to use for the App Service plan." + }, + "zoneRedundant": { + "type": "boolean", + "description": "If true, this App Service Plan will perform availability zone balancing.\nIf false, this App Service Plan will not perform availability zone balancing." + }, + "asyncScalingEnabled": { + "type": "boolean", + "description": "If true, this App Service Plan will attempt to scale asynchronously if there are insufficient workers to scale synchronously.\nIf false, this App Service Plan will only attempt sync scaling." + }, + "planDefaultIdentity": { + "$ref": "#/definitions/DefaultIdentity", + "description": "Identity to use by platform for various features and integrations using managed identity." + }, + "isCustomMode": { + "type": "boolean", + "description": "Whether this server farm is in custom mode." + }, + "registryAdapters": { + "type": "array", + "description": "Registry adapters associated with this App Service plan.", + "items": { + "$ref": "#/definitions/RegistryAdapter" + }, + "x-ms-identifiers": [] + }, + "installScripts": { + "type": "array", + "description": "Install scripts associated with this App Service plan.", + "items": { + "$ref": "#/definitions/InstallScript" + } + }, + "network": { + "$ref": "#/definitions/ServerFarmNetworkSettings", + "description": "All network settings for the server farm." + }, + "storageMounts": { + "type": "array", + "description": "Storage mounts associated with this App Service plan.", + "items": { + "$ref": "#/definitions/StorageMount" + } + }, + "rdpEnabled": { + "type": "boolean", + "description": "If true, RDP access is enabled for this App Service plan. Only applicable for IsCustomMode ASPs.\nIf false, RDP access is disabled." + } + } + }, + "AppServicePlanRestrictions": { + "type": "string", + "description": "App Service plans this offer is restricted to.", + "enum": [ + "None", + "Free", + "Shared", + "Basic", + "Standard", + "Premium" + ], + "x-ms-enum": { + "name": "AppServicePlanRestrictions", + "modelAsString": false + } + }, + "Apple": { + "type": "object", + "description": "The configuration settings of the Apple provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the Apple provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/AppleRegistration", + "description": "The configuration settings of the Apple registration." + }, + "login": { + "$ref": "#/definitions/LoginScopes", + "description": "The configuration settings of the login flow." + } + } + }, + "AppleRegistration": { + "type": "object", + "description": "The configuration settings of the registration for the Apple provider", + "properties": { + "clientId": { + "type": "string", + "description": "The Client ID of the app used for login." + }, + "clientSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the client secret." + } + } + }, + "ApplicationLogsConfig": { + "type": "object", + "description": "Application logs configuration.", + "properties": { + "fileSystem": { + "$ref": "#/definitions/FileSystemApplicationLogsConfig", + "description": "Application logs to file system configuration." + }, + "azureTableStorage": { + "$ref": "#/definitions/AzureTableStorageApplicationLogsConfig", + "description": "Application logs to azure table storage configuration." + }, + "azureBlobStorage": { + "$ref": "#/definitions/AzureBlobStorageApplicationLogsConfig", + "description": "Application logs to blob storage configuration." + } + } + }, + "ApplicationStack": { + "type": "object", + "description": "Application stack.", + "properties": { + "name": { + "type": "string", + "description": "Application stack name." + }, + "display": { + "type": "string", + "description": "Application stack display name." + }, + "dependency": { + "type": "string", + "description": "Application stack dependency." + }, + "majorVersions": { + "type": "array", + "description": "List of major versions available.", + "items": { + "$ref": "#/definitions/StackMajorVersion" + }, + "x-ms-identifiers": [ + "runtimeVersion" + ] + }, + "frameworks": { + "type": "array", + "description": "List of frameworks associated with application stack.", + "items": { + "$ref": "#/definitions/ApplicationStack" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "isDeprecated": { + "type": "array", + "description": "true if this is the stack is deprecated; otherwise, false.", + "items": { + "$ref": "#/definitions/ApplicationStack" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "ApplicationStackCollection": { + "type": "object", + "description": "Collection of Application Stacks", + "properties": { + "value": { + "type": "array", + "description": "The ApplicationStackResource items on this page", + "items": { + "$ref": "#/definitions/ApplicationStackResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ApplicationStackResource": { + "type": "object", + "description": "ARM resource for a ApplicationStack.", + "properties": { + "properties": { + "$ref": "#/definitions/ApplicationStack", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "ArcConfiguration": { + "type": "object", + "properties": { + "artifactsStorageType": { + "$ref": "#/definitions/StorageType", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "artifactStorageClassName": { + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "artifactStorageMountPath": { + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "artifactStorageNodeName": { + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "artifactStorageAccessMode": { + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "frontEndServiceConfiguration": { + "$ref": "#/definitions/FrontEndConfiguration" + }, + "kubeConfig": { + "type": "string", + "format": "password", + "x-ms-mutability": [ + "update", + "create" + ], + "x-ms-secret": true + } + } + }, + "ArmIdWrapper": { + "type": "object", + "description": "A wrapper for an ARM resource id", + "properties": { + "id": { + "type": "string", + "readOnly": true + } + } + }, + "ArmPlan": { + "type": "object", + "description": "The plan object in Azure Resource Manager, represents a marketplace plan.", + "properties": { + "name": { + "type": "string", + "description": "The name." + }, + "publisher": { + "type": "string", + "description": "The publisher." + }, + "product": { + "type": "string", + "description": "The product." + }, + "promotionCode": { + "type": "string", + "description": "The promotion code." + }, + "version": { + "type": "string", + "description": "Version of product." + } + } + }, + "AseRegion": { + "type": "object", + "description": "ASE region.", + "properties": { + "properties": { + "$ref": "#/definitions/AseRegionProperties", + "description": "ASE region resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "AseRegionCollection": { + "type": "object", + "description": "Collection of ASE regions.", + "properties": { + "value": { + "type": "array", + "description": "The AseRegion items on this page", + "items": { + "$ref": "#/definitions/AseRegion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "AseRegionProperties": { + "type": "object", + "description": "ASE region resource specific properties", + "properties": { + "displayName": { + "type": "string", + "description": "Display name for region.", + "readOnly": true + }, + "standard": { + "type": "boolean", + "description": "Is region standard.", + "readOnly": true + }, + "dedicatedHost": { + "type": "boolean", + "description": "Dedicated host enabled.", + "readOnly": true + }, + "zoneRedundant": { + "type": "boolean", + "description": "Zone redundant deployment enabled.", + "readOnly": true + }, + "availableSku": { + "type": "array", + "description": "Available Skus in region.", + "items": { + "type": "string" + } + }, + "availableOS": { + "type": "array", + "description": "Available OSs in region.", + "items": { + "type": "string" + } + } + } + }, + "AseV3NetworkingConfiguration": { + "type": "object", + "description": "Full view of networking configuration for an ASE.", + "properties": { + "properties": { + "$ref": "#/definitions/AseV3NetworkingConfigurationProperties", + "description": "AseV3NetworkingConfiguration resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "AseV3NetworkingConfigurationProperties": { + "type": "object", + "description": "AseV3NetworkingConfiguration resource specific properties", + "properties": { + "windowsOutboundIpAddresses": { + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + }, + "linuxOutboundIpAddresses": { + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + }, + "externalInboundIpAddresses": { + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + }, + "internalInboundIpAddresses": { + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + }, + "allowNewPrivateEndpointConnections": { + "type": "boolean", + "description": "Property to enable and disable new private endpoint connection creation on ASE" + }, + "ftpEnabled": { + "type": "boolean", + "description": "Property to enable and disable FTP on ASEV3" + }, + "remoteDebugEnabled": { + "type": "boolean", + "description": "Property to enable and disable Remote Debug on ASEV3" + }, + "inboundIpAddressOverride": { + "type": "string", + "description": "Customer provided Inbound IP Address. Only able to be set on Ase create." + } + } + }, + "AuthPlatform": { + "type": "object", + "description": "The configuration settings of the platform of App Service Authentication/Authorization.", + "properties": { + "enabled": { + "type": "boolean", + "description": "true if the Authentication / Authorization feature is enabled for the current app; otherwise, false." + }, + "runtimeVersion": { + "type": "string", + "description": "The RuntimeVersion of the Authentication / Authorization feature in use for the current app.\nThe setting in this value can control the behavior of certain features in the Authentication / Authorization module." + }, + "configFilePath": { + "type": "string", + "description": "The path of the config file containing auth settings if they come from a file.\nIf the path is relative, base will the site's root directory." + } + } + }, + "AuthType": { + "type": "string", + "description": "Auth Type", + "enum": [ + "Anonymous", + "UserCredentials", + "SystemIdentity", + "UserAssigned" + ], + "x-ms-enum": { + "name": "AuthType", + "modelAsString": false + } + }, + "AuthenticationType": { + "type": "string", + "description": "Property to select authentication type to access the selected storage account. Available options: SystemAssignedIdentity, UserAssignedIdentity, StorageAccountConnectionString.", + "enum": [ + "SystemAssignedIdentity", + "UserAssignedIdentity", + "StorageAccountConnectionString" + ], + "x-ms-enum": { + "name": "AuthenticationType", + "modelAsString": true, + "values": [ + { + "name": "SystemAssignedIdentity", + "value": "SystemAssignedIdentity" + }, + { + "name": "UserAssignedIdentity", + "value": "UserAssignedIdentity" + }, + { + "name": "StorageAccountConnectionString", + "value": "StorageAccountConnectionString" + } + ] + } + }, + "AutoGeneratedDomainNameLabelScope": { + "type": "string", + "description": "Specifies the scope of uniqueness for the default hostname during resource creation", + "enum": [ + "TenantReuse", + "SubscriptionReuse", + "ResourceGroupReuse", + "NoReuse" + ], + "x-ms-enum": { + "name": "AutoGeneratedDomainNameLabelScope", + "modelAsString": false + } + }, + "AutoHealActionType": { + "type": "string", + "description": "Predefined action to be taken.", + "enum": [ + "Recycle", + "LogEvent", + "CustomAction" + ], + "x-ms-enum": { + "name": "AutoHealActionType", + "modelAsString": false + } + }, + "AutoHealActions": { + "type": "object", + "description": "Actions which to take by the auto-heal module when a rule is triggered.", + "properties": { + "actionType": { + "$ref": "#/definitions/AutoHealActionType", + "description": "Predefined action to be taken." + }, + "customAction": { + "$ref": "#/definitions/AutoHealCustomAction", + "description": "Custom action to be taken." + }, + "minProcessExecutionTime": { + "type": "string", + "description": "Minimum time the process must execute\nbefore taking the action" + } + } + }, + "AutoHealCustomAction": { + "type": "object", + "description": "Custom action to be executed\nwhen an auto heal rule is triggered.", + "properties": { + "exe": { + "type": "string", + "description": "Executable to be run." + }, + "parameters": { + "type": "string", + "description": "Parameters for the executable." + } + } + }, + "AutoHealRules": { + "type": "object", + "description": "Rules that can be defined for auto-heal.", + "properties": { + "triggers": { + "$ref": "#/definitions/AutoHealTriggers", + "description": "Conditions that describe when to execute the auto-heal actions." + }, + "actions": { + "$ref": "#/definitions/AutoHealActions", + "description": "Actions to be executed when a rule is triggered." + } + } + }, + "AutoHealTriggers": { + "type": "object", + "description": "Triggers for auto-heal.", + "properties": { + "requests": { + "$ref": "#/definitions/RequestsBasedTrigger", + "description": "A rule based on total requests." + }, + "privateBytesInKB": { + "type": "integer", + "format": "int32", + "description": "A rule based on private bytes." + }, + "statusCodes": { + "type": "array", + "description": "A rule based on status codes.", + "items": { + "$ref": "#/definitions/StatusCodesBasedTrigger" + }, + "x-ms-identifiers": [ + "path" + ] + }, + "slowRequests": { + "$ref": "#/definitions/SlowRequestsBasedTrigger", + "description": "A rule based on request execution time." + }, + "slowRequestsWithPath": { + "type": "array", + "description": "A rule based on multiple Slow Requests Rule with path", + "items": { + "$ref": "#/definitions/SlowRequestsBasedTrigger" + }, + "x-ms-identifiers": [ + "path" + ] + }, + "statusCodesRange": { + "type": "array", + "description": "A rule based on status codes ranges.", + "items": { + "$ref": "#/definitions/StatusCodesRangeBasedTrigger" + }, + "x-ms-identifiers": [ + "path" + ] + } + } + }, + "AzureActiveDirectory": { + "type": "object", + "description": "The configuration settings of the Azure Active directory provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the Azure Active Directory provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/AzureActiveDirectoryRegistration", + "description": "The configuration settings of the Azure Active Directory app registration." + }, + "login": { + "$ref": "#/definitions/AzureActiveDirectoryLogin", + "description": "The configuration settings of the Azure Active Directory login flow." + }, + "validation": { + "$ref": "#/definitions/AzureActiveDirectoryValidation", + "description": "The configuration settings of the Azure Active Directory token validation flow." + }, + "isAutoProvisioned": { + "type": "boolean", + "description": "Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling.\nThis is an internal flag primarily intended to support the Azure Management Portal. Users should not\nread or write to this property." + } + } + }, + "AzureActiveDirectoryLogin": { + "type": "object", + "description": "The configuration settings of the Azure Active Directory login flow.", + "properties": { + "loginParameters": { + "type": "array", + "description": "Login parameters to send to the OpenID Connect authorization endpoint when\na user logs in. Each parameter must be in the form \"key=value\".", + "items": { + "type": "string" + } + }, + "disableWWWAuthenticate": { + "type": "boolean", + "description": "true if the www-authenticate provider should be omitted from the request; otherwise, false." + } + } + }, + "AzureActiveDirectoryRegistration": { + "type": "object", + "description": "The configuration settings of the Azure Active Directory app registration.", + "properties": { + "openIdIssuer": { + "type": "string", + "description": "The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application.\nWhen using Azure Active Directory, this value is the URI of the directory tenant, e.g. `https://login.microsoftonline.com/v2.0/{tenant-guid}/`.\nThis URI is a case-sensitive identifier for the token issuer.\nMore information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html" + }, + "clientId": { + "type": "string", + "description": "The Client ID of this relying party application, known as the client_id.\nThis setting is required for enabling OpenID Connection authentication with Azure Active Directory or\nother 3rd party OpenID Connect providers.\nMore information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html" + }, + "clientSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the client secret of the relying party application." + }, + "clientSecretCertificateThumbprint": { + "type": "string", + "description": "An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as\na replacement for the Client Secret. It is also optional." + }, + "clientSecretCertificateSubjectAlternativeName": { + "type": "string", + "description": "An alternative to the client secret thumbprint, that is the subject alternative name of a certificate used for signing purposes. This property acts as\na replacement for the Client Secret Certificate Thumbprint. It is also optional." + }, + "clientSecretCertificateIssuer": { + "type": "string", + "description": "An alternative to the client secret thumbprint, that is the issuer of a certificate used for signing purposes. This property acts as\na replacement for the Client Secret Certificate Thumbprint. It is also optional." + } + } + }, + "AzureActiveDirectoryValidation": { + "type": "object", + "description": "The configuration settings of the Azure Active Directory token validation flow.", + "properties": { + "jwtClaimChecks": { + "$ref": "#/definitions/JwtClaimChecks", + "description": "The configuration settings of the checks that should be made while validating the JWT Claims." + }, + "allowedAudiences": { + "type": "array", + "description": "The list of audiences that can make successful authentication/authorization requests.", + "items": { + "type": "string" + } + }, + "defaultAuthorizationPolicy": { + "$ref": "#/definitions/DefaultAuthorizationPolicy", + "description": "The configuration settings of the default authorization policy." + } + } + }, + "AzureBlobStorageApplicationLogsConfig": { + "type": "object", + "description": "Application logs azure blob storage configuration.", + "properties": { + "level": { + "$ref": "#/definitions/LogLevel", + "description": "Log level." + }, + "sasUrl": { + "type": "string", + "description": "SAS url to a azure blob container with read/write/list/delete permissions." + }, + "retentionInDays": { + "type": "integer", + "format": "int32", + "description": "Retention in days.\nRemove blobs older than X days.\n0 or lower means no retention." + } + } + }, + "AzureBlobStorageHttpLogsConfig": { + "type": "object", + "description": "Http logs to azure blob storage configuration.", + "properties": { + "sasUrl": { + "type": "string", + "description": "SAS url to a azure blob container with read/write/list/delete permissions." + }, + "retentionInDays": { + "type": "integer", + "format": "int32", + "description": "Retention in days.\nRemove blobs older than X days.\n0 or lower means no retention." + }, + "enabled": { + "type": "boolean", + "description": "True if configuration is enabled, false if it is disabled and null if configuration is not set." + } + } + }, + "AzureResourceErrorInfo": { + "type": "object", + "description": "The azure resource error info.", + "properties": { + "message": { + "type": "string", + "description": "The error message." + }, + "details": { + "type": "array", + "description": "The error details.", + "items": { + "$ref": "#/definitions/AzureResourceErrorInfo" + }, + "x-ms-identifiers": [ + "code" + ] + } + }, + "required": [ + "message" + ], + "allOf": [ + { + "$ref": "#/definitions/ErrorInfo" + } + ] + }, + "AzureResourceType": { + "type": "string", + "description": "Azure resource type.", + "enum": [ + "Website", + "TrafficManager" + ], + "x-ms-enum": { + "name": "AzureResourceType", + "modelAsString": false + } + }, + "AzureStaticWebApps": { + "type": "object", + "description": "The configuration settings of the Azure Static Web Apps provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the Azure Static Web Apps provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/AzureStaticWebAppsRegistration", + "description": "The configuration settings of the Azure Static Web Apps registration." + } + } + }, + "AzureStaticWebAppsRegistration": { + "type": "object", + "description": "The configuration settings of the registration for the Azure Static Web Apps provider", + "properties": { + "clientId": { + "type": "string", + "description": "The Client ID of the app used for login." + } + } + }, + "AzureStorageInfoValue": { + "type": "object", + "description": "Azure Files or Blob Storage access information value for dictionary storage.", + "properties": { + "type": { + "$ref": "#/definitions/AzureStorageType", + "description": "Type of storage." + }, + "accountName": { + "type": "string", + "description": "Name of the storage account." + }, + "shareName": { + "type": "string", + "description": "Name of the file share (container name, for Blob storage)." + }, + "accessKey": { + "type": "string", + "format": "password", + "description": "Access key for the storage account.", + "x-ms-secret": true + }, + "mountPath": { + "type": "string", + "description": "Path to mount the storage within the site's runtime environment." + }, + "state": { + "$ref": "#/definitions/AzureStorageState", + "description": "State of the storage account.", + "readOnly": true + }, + "protocol": { + "$ref": "#/definitions/AzureStorageProtocol", + "description": "Mounting protocol to use for the storage account." + } + } + }, + "AzureStoragePropertyDictionaryResource": { + "type": "object", + "description": "AzureStorageInfo dictionary resource.", + "properties": { + "properties": { + "type": "object", + "description": "Azure storage accounts.", + "additionalProperties": { + "$ref": "#/definitions/AzureStorageInfoValue" + }, + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "AzureStorageProtocol": { + "type": "string", + "description": "Mounting protocol to use for the storage account.", + "enum": [ + "Smb", + "Http", + "Nfs" + ], + "x-ms-enum": { + "name": "AzureStorageProtocol", + "modelAsString": true, + "values": [ + { + "name": "Smb", + "value": "Smb" + }, + { + "name": "Http", + "value": "Http" + }, + { + "name": "Nfs", + "value": "Nfs" + } + ] + } + }, + "AzureStorageState": { + "type": "string", + "description": "State of the storage account.", + "enum": [ + "Ok", + "InvalidCredentials", + "InvalidShare", + "NotValidated" + ], + "x-ms-enum": { + "name": "AzureStorageState", + "modelAsString": false + } + }, + "AzureStorageType": { + "type": "string", + "description": "Type of storage.", + "enum": [ + "AzureFiles", + "AzureBlob" + ], + "x-ms-enum": { + "name": "AzureStorageType", + "modelAsString": false + } + }, + "AzureTableStorageApplicationLogsConfig": { + "type": "object", + "description": "Application logs to Azure table storage configuration.", + "properties": { + "level": { + "$ref": "#/definitions/LogLevel", + "description": "Log level." + }, + "sasUrl": { + "type": "string", + "description": "SAS URL to an Azure table with add/query/delete permissions." + } + }, + "required": [ + "sasUrl" + ] + }, + "BackupItem": { + "type": "object", + "description": "Backup description.", + "properties": { + "properties": { + "$ref": "#/definitions/BackupItemProperties", + "description": "BackupItem resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "BackupItemCollection": { + "type": "object", + "description": "Collection of backup items.", + "properties": { + "value": { + "type": "array", + "description": "The BackupItem items on this page", + "items": { + "$ref": "#/definitions/BackupItem" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "BackupItemProperties": { + "type": "object", + "description": "BackupItem resource specific properties", + "properties": { + "id": { + "type": "integer", + "format": "int32", + "description": "Id of the backup.", + "readOnly": true, + "x-ms-client-name": "BackupId" + }, + "storageAccountUrl": { + "type": "string", + "description": "SAS URL for the storage account container which contains this backup.", + "readOnly": true + }, + "blobName": { + "type": "string", + "description": "Name of the blob which contains data for this backup.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Name of this backup.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/BackupItemStatus", + "description": "Backup status.", + "readOnly": true + }, + "sizeInBytes": { + "type": "integer", + "format": "int64", + "description": "Size of the backup in bytes.", + "readOnly": true + }, + "created": { + "type": "string", + "format": "date-time", + "description": "Timestamp of the backup creation.", + "readOnly": true + }, + "log": { + "type": "string", + "description": "Details regarding this backup. Might contain an error message.", + "readOnly": true + }, + "databases": { + "type": "array", + "description": "List of databases included in the backup.", + "items": { + "$ref": "#/definitions/DatabaseBackupSetting" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + }, + "scheduled": { + "type": "boolean", + "description": "True if this backup has been created due to a schedule being triggered.", + "readOnly": true + }, + "lastRestoreTimeStamp": { + "type": "string", + "format": "date-time", + "description": "Timestamp of a last restore operation which used this backup.", + "readOnly": true + }, + "finishedTimeStamp": { + "type": "string", + "format": "date-time", + "description": "Timestamp when this backup finished.", + "readOnly": true + }, + "correlationId": { + "type": "string", + "description": "Unique correlation identifier. Please use this along with the timestamp while communicating with Azure support.", + "readOnly": true + }, + "websiteSizeInBytes": { + "type": "integer", + "format": "int64", + "description": "Size of the original web app which has been backed up.", + "readOnly": true + } + } + }, + "BackupItemStatus": { + "type": "string", + "description": "Backup status.", + "enum": [ + "InProgress", + "Failed", + "Succeeded", + "TimedOut", + "Created", + "Skipped", + "PartiallySucceeded", + "DeleteInProgress", + "DeleteFailed", + "Deleted" + ], + "x-ms-enum": { + "name": "BackupItemStatus", + "modelAsString": false + } + }, + "BackupRequest": { + "type": "object", + "description": "Description of a backup which will be performed.", + "properties": { + "properties": { + "$ref": "#/definitions/BackupRequestProperties", + "description": "BackupRequest resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "BackupRequestProperties": { + "type": "object", + "description": "BackupRequest resource specific properties", + "properties": { + "backupName": { + "type": "string", + "description": "Name of the backup." + }, + "enabled": { + "type": "boolean", + "description": "True if the backup schedule is enabled (must be included in that case), false if the backup schedule should be disabled." + }, + "storageAccountUrl": { + "type": "string", + "description": "SAS URL to the container." + }, + "backupSchedule": { + "$ref": "#/definitions/BackupSchedule", + "description": "Schedule for the backup if it is executed periodically." + }, + "databases": { + "type": "array", + "description": "Databases included in the backup.", + "items": { + "$ref": "#/definitions/DatabaseBackupSetting" + }, + "x-ms-identifiers": [ + "name" + ] + } + }, + "required": [ + "storageAccountUrl" + ] + }, + "BackupSchedule": { + "type": "object", + "description": "Description of a backup schedule. Describes how often should be the backup performed and what should be the retention policy.", + "properties": { + "frequencyInterval": { + "type": "integer", + "format": "int32", + "description": "How often the backup should be executed (e.g. for weekly backup, this should be set to 7 and FrequencyUnit should be set to Day)", + "default": 7 + }, + "frequencyUnit": { + "type": "string", + "description": "The unit of time for how often the backup should be executed (e.g. for weekly backup, this should be set to Day and FrequencyInterval should be set to 7)", + "default": "Day", + "enum": [ + "Day", + "Hour" + ], + "x-ms-enum": { + "name": "FrequencyUnit", + "modelAsString": false + } + }, + "keepAtLeastOneBackup": { + "type": "boolean", + "description": "True if the retention policy should always keep at least one backup in the storage account, regardless how old it is; false otherwise.", + "default": true + }, + "retentionPeriodInDays": { + "type": "integer", + "format": "int32", + "description": "After how many days backups should be deleted.", + "default": 30 + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "When the schedule should start working." + }, + "lastExecutionTime": { + "type": "string", + "format": "date-time", + "description": "Last time when this schedule was triggered.", + "readOnly": true + } + }, + "required": [ + "frequencyInterval", + "frequencyUnit", + "keepAtLeastOneBackup", + "retentionPeriodInDays" + ] + }, + "BillingMeter": { + "type": "object", + "description": "App Service billing entity that contains information about meter which the Azure billing system utilizes to charge users for services.", + "properties": { + "properties": { + "$ref": "#/definitions/BillingMeterProperties", + "description": "BillingMeter resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "BillingMeterCollection": { + "type": "object", + "description": "Collection of Billing Meters", + "properties": { + "value": { + "type": "array", + "description": "The BillingMeter items on this page", + "items": { + "$ref": "#/definitions/BillingMeter" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "BillingMeterProperties": { + "type": "object", + "description": "BillingMeter resource specific properties", + "properties": { + "meterId": { + "type": "string", + "description": "Meter GUID onboarded in Commerce" + }, + "billingLocation": { + "type": "string", + "description": "Azure Location of billable resource" + }, + "shortName": { + "type": "string", + "description": "Short Name from App Service Azure pricing Page" + }, + "friendlyName": { + "type": "string", + "description": "Friendly name of the meter" + }, + "resourceType": { + "type": "string", + "description": "App Service ResourceType meter used for" + }, + "osType": { + "type": "string", + "description": "App Service OS type meter used for" + }, + "multiplier": { + "type": "number", + "format": "double", + "description": "Meter Multiplier" + } + } + }, + "BlobStorageTokenStore": { + "type": "object", + "description": "The configuration settings of the storage of the tokens if blob storage is used.", + "properties": { + "sasUrlSettingName": { + "type": "string", + "description": "The name of the app setting containing the SAS URL of the blob storage containing the tokens." + } + } + }, + "BuildStatus": { + "type": "string", + "description": "The status of the static site build.", + "enum": [ + "WaitingForDeployment", + "Uploading", + "Deploying", + "Ready", + "Failed", + "Deleting", + "Detached" + ], + "x-ms-enum": { + "name": "BuildStatus", + "modelAsString": true, + "values": [ + { + "name": "WaitingForDeployment", + "value": "WaitingForDeployment" + }, + { + "name": "Uploading", + "value": "Uploading" + }, + { + "name": "Deploying", + "value": "Deploying" + }, + { + "name": "Ready", + "value": "Ready" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Deleting", + "value": "Deleting" + }, + { + "name": "Detached", + "value": "Detached" + } + ] + } + }, + "BuiltInAuthenticationProvider": { + "type": "string", + "description": "The default authentication provider to use when multiple providers are configured.\nThis setting is only needed if multiple providers are configured and the unauthenticated client\naction is set to \"RedirectToLoginPage\".", + "enum": [ + "AzureActiveDirectory", + "Facebook", + "Google", + "MicrosoftAccount", + "Twitter", + "Github" + ], + "x-ms-enum": { + "name": "BuiltInAuthenticationProvider", + "modelAsString": false + } + }, + "Capability": { + "type": "object", + "description": "Describes the capabilities/features allowed for a specific SKU.", + "properties": { + "name": { + "type": "string", + "description": "Name of the SKU capability." + }, + "value": { + "type": "string", + "description": "Value of the SKU capability." + }, + "reason": { + "type": "string", + "description": "Reason of the SKU capability." + } + } + }, + "Certificate": { + "type": "object", + "description": "SSL certificate for an app.", + "properties": { + "properties": { + "$ref": "#/definitions/CertificateProperties", + "description": "Certificate resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "CertificateCollection": { + "type": "object", + "description": "Collection of certificates.", + "properties": { + "value": { + "type": "array", + "description": "The Certificate items on this page", + "items": { + "$ref": "#/definitions/Certificate" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "CertificatePatchResource": { + "type": "object", + "description": "ARM resource for a certificate.", + "properties": { + "properties": { + "$ref": "#/definitions/CertificatePatchResourceProperties", + "description": "CertificatePatchResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "CertificatePatchResourceProperties": { + "type": "object", + "description": "CertificatePatchResource resource specific properties", + "properties": { + "password": { + "type": "string", + "description": "Certificate password.", + "readOnly": true + }, + "friendlyName": { + "type": "string", + "description": "Friendly name of the certificate.", + "readOnly": true + }, + "subjectName": { + "type": "string", + "description": "Subject name of the certificate.", + "readOnly": true + }, + "hostNames": { + "type": "array", + "description": "Host names the certificate applies to.", + "items": { + "type": "string" + } + }, + "pfxBlob": { + "type": "string", + "format": "byte", + "description": "Pfx blob." + }, + "siteName": { + "type": "string", + "description": "App name.", + "readOnly": true + }, + "selfLink": { + "type": "string", + "description": "Self link.", + "readOnly": true + }, + "issuer": { + "type": "string", + "description": "Certificate issuer.", + "readOnly": true + }, + "issueDate": { + "type": "string", + "format": "date-time", + "description": "Certificate issue Date.", + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "description": "Certificate expiration date.", + "readOnly": true + }, + "thumbprint": { + "type": "string", + "description": "Certificate thumbprint.", + "readOnly": true + }, + "valid": { + "type": "boolean", + "description": "Is the certificate valid?.", + "readOnly": true + }, + "cerBlob": { + "type": "string", + "format": "byte", + "description": "Raw bytes of .cer file", + "readOnly": true + }, + "publicKeyHash": { + "type": "string", + "description": "Public key hash.", + "readOnly": true + }, + "hostingEnvironmentProfile": { + "$ref": "#/definitions/HostingEnvironmentProfile", + "description": "Specification for the App Service Environment to use for the certificate.", + "readOnly": true + }, + "keyVaultId": { + "type": "string", + "description": "Key Vault Csm resource Id." + }, + "keyVaultSecretName": { + "type": "string", + "description": "Key Vault secret name." + }, + "keyVaultSecretStatus": { + "$ref": "#/definitions/KeyVaultSecretStatus", + "description": "Status of the Key Vault secret.", + "readOnly": true + }, + "serverFarmId": { + "type": "string", + "description": "Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\"." + }, + "canonicalName": { + "type": "string", + "description": "CNAME of the certificate to be issued via free certificate" + }, + "domainValidationMethod": { + "type": "string", + "description": "Method of domain validation for free cert" + } + } + }, + "CertificateProperties": { + "type": "object", + "description": "Certificate resource specific properties", + "properties": { + "password": { + "type": "string", + "description": "Certificate password." + }, + "friendlyName": { + "type": "string", + "description": "Friendly name of the certificate.", + "readOnly": true + }, + "subjectName": { + "type": "string", + "description": "Subject name of the certificate.", + "readOnly": true + }, + "hostNames": { + "type": "array", + "description": "Host names the certificate applies to.", + "items": { + "type": "string" + } + }, + "pfxBlob": { + "type": "string", + "format": "byte", + "description": "Pfx blob." + }, + "siteName": { + "type": "string", + "description": "App name.", + "readOnly": true + }, + "selfLink": { + "type": "string", + "description": "Self link.", + "readOnly": true + }, + "issuer": { + "type": "string", + "description": "Certificate issuer.", + "readOnly": true + }, + "issueDate": { + "type": "string", + "format": "date-time", + "description": "Certificate issue Date.", + "readOnly": true + }, + "expirationDate": { + "type": "string", + "format": "date-time", + "description": "Certificate expiration date.", + "readOnly": true + }, + "thumbprint": { + "type": "string", + "description": "Certificate thumbprint.", + "readOnly": true + }, + "valid": { + "type": "boolean", + "description": "Is the certificate valid?.", + "readOnly": true + }, + "cerBlob": { + "type": "string", + "format": "byte", + "description": "Raw bytes of .cer file", + "readOnly": true + }, + "publicKeyHash": { + "type": "string", + "description": "Public key hash.", + "readOnly": true + }, + "hostingEnvironmentProfile": { + "$ref": "#/definitions/HostingEnvironmentProfile", + "description": "Specification for the App Service Environment to use for the certificate.", + "readOnly": true + }, + "keyVaultId": { + "type": "string", + "format": "arm-id", + "description": "Azure Key Vault Csm resource Id.", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.KeyVault/vaults" + } + ] + } + }, + "keyVaultSecretName": { + "type": "string", + "description": "Azure Key Vault secret name." + }, + "keyVaultSecretStatus": { + "$ref": "#/definitions/KeyVaultSecretStatus", + "description": "Status of the Key Vault secret.", + "readOnly": true + }, + "serverFarmId": { + "type": "string", + "format": "arm-id", + "description": "Resource ID of the associated App Service plan.", + "x-ms-arm-id-details": { + "allowedResources": [ + { + "type": "Microsoft.Web/serverfarms" + } + ] + } + }, + "canonicalName": { + "type": "string", + "description": "CNAME of the certificate to be issued via free certificate" + }, + "domainValidationMethod": { + "type": "string", + "description": "Method of domain validation for free cert" + } + } + }, + "Channels": { + "type": "string", + "description": "List of channels that this recommendation can apply.", + "enum": [ + "Notification", + "Api", + "Email", + "Webhook", + "All" + ], + "x-ms-enum": { + "name": "Channels", + "modelAsString": false + } + }, + "CheckNameResourceTypes": { + "type": "string", + "description": "Resource type used for verification.", + "enum": [ + "Site", + "Slot", + "HostingEnvironment", + "PublishingUser", + "Microsoft.Web/sites", + "Microsoft.Web/sites/slots", + "Microsoft.Web/hostingEnvironments", + "Microsoft.Web/publishingUsers" + ], + "x-ms-enum": { + "name": "CheckNameResourceTypes", + "modelAsString": true, + "values": [ + { + "name": "Site", + "value": "Site" + }, + { + "name": "Slot", + "value": "Slot" + }, + { + "name": "HostingEnvironment", + "value": "HostingEnvironment" + }, + { + "name": "PublishingUser", + "value": "PublishingUser" + }, + { + "name": "Microsoft.Web/sites", + "value": "Microsoft.Web/sites" + }, + { + "name": "Microsoft.Web/sites/slots", + "value": "Microsoft.Web/sites/slots" + }, + { + "name": "Microsoft.Web/hostingEnvironments", + "value": "Microsoft.Web/hostingEnvironments" + }, + { + "name": "Microsoft.Web/publishingUsers", + "value": "Microsoft.Web/publishingUsers" + } + ] + } + }, + "ClientCertMode": { + "type": "string", + "description": "This composes with ClientCertEnabled setting.\n- ClientCertEnabled: false means ClientCert is ignored.\n- ClientCertEnabled: true and ClientCertMode: Required means ClientCert is required.\n- ClientCertEnabled: true and ClientCertMode: Optional means ClientCert is optional or accepted.", + "enum": [ + "Required", + "Optional", + "OptionalInteractiveUser" + ], + "x-ms-enum": { + "name": "ClientCertMode", + "modelAsString": false + } + }, + "ClientRegistration": { + "type": "object", + "description": "The configuration settings of the app registration for providers that have client ids and client secrets", + "properties": { + "clientId": { + "type": "string", + "description": "The Client ID of the app used for login." + }, + "clientSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the client secret." + } + } + }, + "CloneAbilityResult": { + "type": "string", + "description": "Name of app.", + "enum": [ + "Cloneable", + "PartiallyCloneable", + "NotCloneable" + ], + "x-ms-enum": { + "name": "CloneAbilityResult", + "modelAsString": false + } + }, + "CloningInfo": { + "type": "object", + "description": "Information needed for cloning operation.", + "properties": { + "correlationId": { + "type": "string", + "format": "uuid", + "description": "Correlation ID of cloning operation. This ID ties multiple cloning operations\ntogether to use the same snapshot." + }, + "overwrite": { + "type": "boolean", + "description": "true to overwrite destination app; otherwise, false." + }, + "cloneCustomHostNames": { + "type": "boolean", + "description": "true to clone custom hostnames from source app; otherwise, false." + }, + "cloneSourceControl": { + "type": "boolean", + "description": "true to clone source control from source app; otherwise, false." + }, + "sourceWebAppId": { + "type": "string", + "description": "ARM resource ID of the source app. App resource ID is of the form\n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and\n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots." + }, + "sourceWebAppLocation": { + "type": "string", + "description": "Location of source app ex: West US or North Europe" + }, + "hostingEnvironment": { + "type": "string", + "description": "App Service Environment." + }, + "appSettingsOverrides": { + "type": "object", + "description": "Application setting overrides for cloned app. If specified, these settings override the settings cloned\nfrom source app. Otherwise, application settings from source app are retained.", + "additionalProperties": { + "type": "string" + } + }, + "configureLoadBalancing": { + "type": "boolean", + "description": "true to configure load balancing for source and destination app." + }, + "trafficManagerProfileId": { + "type": "string", + "description": "ARM resource ID of the Traffic Manager profile to use, if it exists. Traffic Manager resource ID is of the form\n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}." + }, + "trafficManagerProfileName": { + "type": "string", + "description": "Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist." + } + }, + "required": [ + "sourceWebAppId" + ] + }, + "ComputeModeOptions": { + "type": "string", + "description": "Shared/dedicated workers.", + "enum": [ + "Shared", + "Dedicated", + "Dynamic" + ], + "x-ms-enum": { + "name": "ComputeModeOptions", + "modelAsString": false + } + }, + "ConnStringInfo": { + "type": "object", + "description": "Database connection string information.", + "properties": { + "name": { + "type": "string", + "description": "Name of connection string." + }, + "connectionString": { + "type": "string", + "description": "Connection string value." + }, + "type": { + "$ref": "#/definitions/ConnectionStringType", + "description": "Type of database." + } + } + }, + "ConnStringValueTypePair": { + "type": "object", + "description": "Database connection string value to type pair.", + "properties": { + "value": { + "type": "string", + "description": "Value of pair." + }, + "type": { + "$ref": "#/definitions/ConnectionStringType", + "description": "Type of database." + } + }, + "required": [ + "value", + "type" + ] + }, + "ConnectionStringDictionary": { + "type": "object", + "description": "String dictionary resource.", + "properties": { + "properties": { + "type": "object", + "description": "Connection strings.", + "additionalProperties": { + "$ref": "#/definitions/ConnStringValueTypePair" + }, + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "ConnectionStringType": { + "type": "string", + "description": "Type of database.", + "enum": [ + "MySql", + "SQLServer", + "SQLAzure", + "Custom", + "NotificationHub", + "ServiceBus", + "EventHub", + "ApiHub", + "DocDb", + "RedisCache", + "PostgreSQL" + ], + "x-ms-enum": { + "name": "ConnectionStringType", + "modelAsString": false + } + }, + "ContainerAppsConfiguration": { + "type": "object", + "properties": { + "daprAIInstrumentationKey": { + "type": "string", + "description": "Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "platformReservedCidr": { + "type": "string", + "description": "IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "platformReservedDnsIP": { + "type": "string", + "description": "An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "controlPlaneSubnetResourceId": { + "type": "string", + "description": "Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "appSubnetResourceId": { + "type": "string", + "description": "Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "dockerBridgeCidr": { + "type": "string", + "description": "CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the IP range defined in platformReservedCidr, if defined.", + "x-ms-mutability": [ + "read", + "create" + ] + } + } + }, + "ContainerCpuStatistics": { + "type": "object", + "properties": { + "cpuUsage": { + "$ref": "#/definitions/ContainerCpuUsage" + }, + "systemCpuUsage": { + "type": "integer", + "format": "int64" + }, + "onlineCpuCount": { + "type": "integer", + "format": "int32" + }, + "throttlingData": { + "$ref": "#/definitions/ContainerThrottlingData" + } + } + }, + "ContainerCpuUsage": { + "type": "object", + "properties": { + "totalUsage": { + "type": "integer", + "format": "int64" + }, + "perCpuUsage": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + } + }, + "kernelModeUsage": { + "type": "integer", + "format": "int64" + }, + "userModeUsage": { + "type": "integer", + "format": "int64" + } + } + }, + "ContainerInfo": { + "type": "object", + "properties": { + "currentTimeStamp": { + "type": "string", + "format": "date-time" + }, + "previousTimeStamp": { + "type": "string", + "format": "date-time" + }, + "currentCpuStats": { + "$ref": "#/definitions/ContainerCpuStatistics" + }, + "previousCpuStats": { + "$ref": "#/definitions/ContainerCpuStatistics" + }, + "memoryStats": { + "$ref": "#/definitions/ContainerMemoryStatistics" + }, + "name": { + "type": "string" + }, + "id": { + "type": "string" + }, + "eth0": { + "$ref": "#/definitions/ContainerNetworkInterfaceStatistics" + } + } + }, + "ContainerMemoryStatistics": { + "type": "object", + "properties": { + "usage": { + "type": "integer", + "format": "int64" + }, + "maxUsage": { + "type": "integer", + "format": "int64" + }, + "limit": { + "type": "integer", + "format": "int64" + } + } + }, + "ContainerNetworkInterfaceStatistics": { + "type": "object", + "properties": { + "rxBytes": { + "type": "integer", + "format": "int64" + }, + "rxPackets": { + "type": "integer", + "format": "int64" + }, + "rxErrors": { + "type": "integer", + "format": "int64" + }, + "rxDropped": { + "type": "integer", + "format": "int64" + }, + "txBytes": { + "type": "integer", + "format": "int64" + }, + "txPackets": { + "type": "integer", + "format": "int64" + }, + "txErrors": { + "type": "integer", + "format": "int64" + }, + "txDropped": { + "type": "integer", + "format": "int64" + } + } + }, + "ContainerThrottlingData": { + "type": "object", + "properties": { + "periods": { + "type": "integer", + "format": "int32" + }, + "throttledPeriods": { + "type": "integer", + "format": "int32" + }, + "throttledTime": { + "type": "integer", + "format": "int32" + } + } + }, + "ContentHash": { + "type": "object", + "description": "The content hash.", + "properties": { + "algorithm": { + "type": "string", + "description": "The algorithm of the content hash." + }, + "value": { + "type": "string", + "description": "The value of the content hash." + } + } + }, + "ContentLink": { + "type": "object", + "description": "The content link.", + "properties": { + "uri": { + "type": "string", + "description": "The content link URI." + }, + "contentVersion": { + "type": "string", + "description": "The content version.", + "readOnly": true + }, + "contentSize": { + "type": "integer", + "format": "int64", + "description": "The content size.", + "readOnly": true + }, + "contentHash": { + "$ref": "#/definitions/ContentHash", + "description": "The content hash.", + "readOnly": true + }, + "metadata": { + "description": "The metadata.", + "readOnly": true + } + } + }, + "ContinuousWebJob": { + "type": "object", + "description": "Continuous Web Job Information.", + "properties": { + "properties": { + "$ref": "#/definitions/ContinuousWebJobProperties", + "description": "ContinuousWebJob resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ContinuousWebJobCollection": { + "type": "object", + "description": "Collection of Kudu continuous web job information elements.", + "properties": { + "value": { + "type": "array", + "description": "The ContinuousWebJob items on this page", + "items": { + "$ref": "#/definitions/ContinuousWebJob" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ContinuousWebJobProperties": { + "type": "object", + "description": "ContinuousWebJob resource specific properties", + "properties": { + "status": { + "$ref": "#/definitions/ContinuousWebJobStatus", + "description": "Job status." + }, + "detailed_status": { + "type": "string", + "description": "Detailed status.", + "x-ms-client-name": "detailedStatus" + }, + "log_url": { + "type": "string", + "description": "Log URL.", + "x-ms-client-name": "logUrl" + }, + "run_command": { + "type": "string", + "description": "Run command.", + "x-ms-client-name": "runCommand" + }, + "url": { + "type": "string", + "description": "Job URL." + }, + "extra_info_url": { + "type": "string", + "description": "Extra Info URL.", + "x-ms-client-name": "extraInfoUrl" + }, + "web_job_type": { + "$ref": "#/definitions/WebJobType", + "description": "Job type.", + "x-ms-client-name": "webJobType" + }, + "error": { + "type": "string", + "description": "Error information." + }, + "using_sdk": { + "type": "boolean", + "description": "Using SDK?", + "x-ms-client-name": "usingSdk" + }, + "settings": { + "type": "object", + "description": "Job settings.", + "additionalProperties": {} + } + } + }, + "ContinuousWebJobStatus": { + "type": "string", + "description": "Job status.", + "enum": [ + "Initializing", + "Starting", + "Running", + "PendingRestart", + "Stopped" + ], + "x-ms-enum": { + "name": "ContinuousWebJobStatus", + "modelAsString": false + } + }, + "CookieExpiration": { + "type": "object", + "description": "The configuration settings of the session cookie's expiration.", + "properties": { + "convention": { + "$ref": "#/definitions/CookieExpirationConvention", + "description": "The convention used when determining the session cookie's expiration." + }, + "timeToExpiration": { + "type": "string", + "description": "The time after the request is made when the session cookie should expire." + } + } + }, + "CookieExpirationConvention": { + "type": "string", + "description": "The convention used when determining the session cookie's expiration.", + "enum": [ + "FixedTime", + "IdentityProviderDerived" + ], + "x-ms-enum": { + "name": "CookieExpirationConvention", + "modelAsString": false + } + }, + "Correlation": { + "type": "object", + "description": "The correlation property.", + "properties": { + "clientTrackingId": { + "type": "string", + "description": "The client tracking id." + } + } + }, + "CorsSettings": { + "type": "object", + "description": "Cross-Origin Resource Sharing (CORS) settings for the app.", + "properties": { + "allowedOrigins": { + "type": "array", + "description": "Gets or sets the list of origins that should be allowed to make cross-origin\ncalls (for example: http://example.com:12345). Use \"*\" to allow all.", + "items": { + "type": "string" + } + }, + "supportCredentials": { + "type": "boolean", + "description": "Gets or sets whether CORS requests with credentials are allowed. See\nhttps://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials\nfor more details." + } + } + }, + "CsmDeploymentStatus": { + "type": "object", + "description": "Deployment status response payload.", + "properties": { + "properties": { + "$ref": "#/definitions/CsmDeploymentStatusProperties", + "description": "CsmDeploymentStatus resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "CsmDeploymentStatusCollection": { + "type": "object", + "description": "Deployment status collection ARM resource.", + "properties": { + "value": { + "type": "array", + "description": "The CsmDeploymentStatus items on this page", + "items": { + "$ref": "#/definitions/CsmDeploymentStatus" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "CsmDeploymentStatusProperties": { + "type": "object", + "description": "CsmDeploymentStatus resource specific properties", + "properties": { + "deploymentId": { + "type": "string", + "description": "Deployment operation id." + }, + "status": { + "$ref": "#/definitions/DeploymentBuildStatus", + "description": "Deployment build status." + }, + "numberOfInstancesInProgress": { + "type": "integer", + "format": "int32", + "description": "Number of site instances currently being provisioned." + }, + "numberOfInstancesSuccessful": { + "type": "integer", + "format": "int32", + "description": "Number of site instances provisioned successfully." + }, + "numberOfInstancesFailed": { + "type": "integer", + "format": "int32", + "description": "Number of site instances failed to provision." + }, + "failedInstancesLogs": { + "type": "array", + "description": "List of URLs pointing to logs for instances which failed to provision.", + "items": { + "type": "string" + } + }, + "errors": { + "type": "array", + "description": "List of errors.", + "items": { + "$ref": "#/definitions/ErrorEntity" + }, + "x-ms-identifiers": [] + } + } + }, + "CsmMoveResourceEnvelope": { + "type": "object", + "description": "Object with a list of the resources that need to be moved and the resource group they should be moved to.", + "properties": { + "targetResourceGroup": { + "type": "string", + "minLength": 1, + "maxLength": 90, + "pattern": " ^[-\\w\\._\\(\\)]+[^\\.]$" + }, + "resources": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "CsmOperationCollection": { + "type": "object", + "description": "Collection of Azure resource manager operation metadata.", + "properties": { + "value": { + "type": "array", + "description": "Collection of resources.", + "items": { + "$ref": "#/definitions/CsmOperationDescription" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "description": "Link to next page of resources.", + "readOnly": true + } + }, + "required": [ + "value" + ] + }, + "CsmOperationDescription": { + "type": "object", + "description": "Description of an operation available for Microsoft.Web resource provider.", + "properties": { + "name": { + "type": "string" + }, + "isDataAction": { + "type": "boolean" + }, + "display": { + "$ref": "#/definitions/CsmOperationDisplay", + "description": "Meta data about operation used for display in portal." + }, + "origin": { + "type": "string" + }, + "properties": { + "$ref": "#/definitions/CsmOperationDescriptionProperties", + "description": "Properties available for a Microsoft.Web resource provider operation." + } + } + }, + "CsmOperationDescriptionProperties": { + "type": "object", + "description": "Properties available for a Microsoft.Web resource provider operation.", + "properties": { + "serviceSpecification": { + "$ref": "#/definitions/ServiceSpecification", + "description": "Resource metrics service provided by Microsoft.Insights resource provider." + } + } + }, + "CsmOperationDisplay": { + "type": "object", + "description": "Meta data about operation used for display in portal.", + "properties": { + "provider": { + "type": "string" + }, + "resource": { + "type": "string" + }, + "operation": { + "type": "string" + }, + "description": { + "type": "string" + } + } + }, + "CsmPublishingCredentialsPoliciesEntity": { + "type": "object", + "description": "Publishing Credentials Policies parameters.", + "properties": { + "properties": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntityProperties", + "description": "CsmPublishingCredentialsPoliciesEntity resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "CsmPublishingCredentialsPoliciesEntityProperties": { + "type": "object", + "description": "CsmPublishingCredentialsPoliciesEntity resource specific properties", + "properties": { + "allow": { + "type": "boolean", + "description": "true to allow access to a publishing method; otherwise, false." + } + }, + "required": [ + "allow" + ] + }, + "CsmPublishingProfileOptions": { + "type": "object", + "description": "Publishing options for requested profile.", + "properties": { + "format": { + "$ref": "#/definitions/PublishingProfileFormat", + "description": "Name of the format. Valid values are:\nFileZilla3\nWebDeploy -- default\nFtp" + }, + "includeDisasterRecoveryEndpoints": { + "type": "boolean", + "description": "Include the DisasterRecover endpoint if true" + } + } + }, + "CsmSlotEntity": { + "type": "object", + "description": "Deployment slot parameters.", + "properties": { + "targetSlot": { + "type": "string", + "description": "Destination deployment slot during swap operation." + }, + "preserveVnet": { + "type": "boolean", + "description": "true to preserve Virtual Network to the slot during swap; otherwise, false." + } + }, + "required": [ + "targetSlot", + "preserveVnet" + ] + }, + "CsmUsageQuota": { + "type": "object", + "description": "Usage of the quota resource.", + "properties": { + "unit": { + "type": "string", + "description": "Units of measurement for the quota resource." + }, + "nextResetTime": { + "type": "string", + "format": "date-time", + "description": "Next reset time for the resource counter." + }, + "currentValue": { + "type": "integer", + "format": "int64", + "description": "The current value of the resource counter." + }, + "limit": { + "type": "integer", + "format": "int64", + "description": "The resource limit." + }, + "name": { + "$ref": "#/definitions/LocalizableString", + "description": "Quota name." + } + } + }, + "CsmUsageQuotaCollection": { + "type": "object", + "description": "Paged collection of CsmUsageQuota items", + "properties": { + "value": { + "type": "array", + "description": "The CsmUsageQuota items on this page", + "items": { + "$ref": "#/definitions/CsmUsageQuota" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "CustomDnsSuffixConfiguration": { + "type": "object", + "description": "Full view of the custom domain suffix configuration for ASEv3.", + "properties": { + "properties": { + "$ref": "#/definitions/CustomDnsSuffixConfigurationProperties", + "description": "CustomDnsSuffixConfiguration resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "CustomDnsSuffixConfigurationProperties": { + "type": "object", + "description": "CustomDnsSuffixConfiguration resource specific properties", + "properties": { + "provisioningState": { + "$ref": "#/definitions/CustomDnsSuffixProvisioningState", + "readOnly": true + }, + "provisioningDetails": { + "type": "string", + "readOnly": true + }, + "dnsSuffix": { + "type": "string", + "description": "The default custom domain suffix to use for all sites deployed on the ASE." + }, + "certificateUrl": { + "type": "string", + "description": "The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix." + }, + "keyVaultReferenceIdentity": { + "type": "string", + "description": "The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available." + } + } + }, + "CustomDnsSuffixProvisioningState": { + "type": "string", + "enum": [ + "Succeeded", + "Failed", + "Degraded", + "InProgress" + ], + "x-ms-enum": { + "name": "CustomDnsSuffixProvisioningState", + "modelAsString": false + } + }, + "CustomDomainStatus": { + "type": "string", + "description": "The status of the custom domain", + "enum": [ + "RetrievingValidationToken", + "Validating", + "Adding", + "Ready", + "Failed", + "Deleting", + "Unhealthy" + ], + "x-ms-enum": { + "name": "CustomDomainStatus", + "modelAsString": true, + "values": [ + { + "name": "RetrievingValidationToken", + "value": "RetrievingValidationToken" + }, + { + "name": "Validating", + "value": "Validating" + }, + { + "name": "Adding", + "value": "Adding" + }, + { + "name": "Ready", + "value": "Ready" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Deleting", + "value": "Deleting" + }, + { + "name": "Unhealthy", + "value": "Unhealthy" + } + ] + } + }, + "CustomHostNameDnsRecordType": { + "type": "string", + "description": "Custom DNS record type.", + "enum": [ + "CName", + "A" + ], + "x-ms-enum": { + "name": "CustomHostNameDnsRecordType", + "modelAsString": false + } + }, + "CustomHostnameAnalysisResult": { + "type": "object", + "description": "Custom domain analysis.", + "properties": { + "properties": { + "$ref": "#/definitions/CustomHostnameAnalysisResultProperties", + "description": "CustomHostnameAnalysisResult resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "CustomHostnameAnalysisResultProperties": { + "type": "object", + "description": "CustomHostnameAnalysisResult resource specific properties", + "properties": { + "isHostnameAlreadyVerified": { + "type": "boolean", + "description": "true if hostname is already verified; otherwise, false.", + "readOnly": true + }, + "customDomainVerificationTest": { + "$ref": "#/definitions/DnsVerificationTestResult", + "description": "DNS verification test result.", + "readOnly": true + }, + "customDomainVerificationFailureInfo": { + "$ref": "#/definitions/ErrorEntity", + "description": "Raw failure information if DNS verification fails.", + "readOnly": true + }, + "hasConflictOnScaleUnit": { + "type": "boolean", + "description": "true if there is a conflict on a scale unit; otherwise, false.", + "readOnly": true + }, + "hasConflictAcrossSubscription": { + "type": "boolean", + "description": "true if there is a conflict across subscriptions; otherwise, false.", + "readOnly": true + }, + "conflictingAppResourceId": { + "type": "string", + "description": "Name of the conflicting app on scale unit if it's within the same subscription.", + "readOnly": true + }, + "cNameRecords": { + "type": "array", + "description": "CName records controller can see for this hostname.", + "items": { + "type": "string" + } + }, + "txtRecords": { + "type": "array", + "description": "TXT records controller can see for this hostname.", + "items": { + "type": "string" + } + }, + "aRecords": { + "type": "array", + "description": "A records controller can see for this hostname.", + "items": { + "type": "string" + } + }, + "alternateCNameRecords": { + "type": "array", + "description": "Alternate CName records controller can see for this hostname.", + "items": { + "type": "string" + } + }, + "alternateTxtRecords": { + "type": "array", + "description": "Alternate TXT records controller can see for this hostname.", + "items": { + "type": "string" + } + } + } + }, + "CustomHostnameSites": { + "type": "object", + "description": "A hostname and its assigned sites", + "properties": { + "properties": { + "$ref": "#/definitions/CustomHostnameSitesProperties", + "description": "CustomHostnameSites resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "CustomHostnameSitesCollection": { + "type": "object", + "description": "Collection of custom hostname sites", + "properties": { + "value": { + "type": "array", + "description": "The CustomHostnameSites items on this page", + "items": { + "$ref": "#/definitions/CustomHostnameSites" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "CustomHostnameSitesProperties": { + "type": "object", + "description": "CustomHostnameSites resource specific properties", + "properties": { + "customHostname": { + "type": "string" + }, + "region": { + "type": "string" + }, + "siteResourceIds": { + "type": "array", + "items": { + "$ref": "#/definitions/Identifier" + } + } + } + }, + "CustomOpenIdConnectProvider": { + "type": "object", + "description": "The configuration settings of the custom Open ID Connect provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the custom Open ID provider provider should not be enabled; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/OpenIdConnectRegistration", + "description": "The configuration settings of the app registration for the custom Open ID Connect provider." + }, + "login": { + "$ref": "#/definitions/OpenIdConnectLogin", + "description": "The configuration settings of the login flow of the custom Open ID Connect provider." + } + } + }, + "DaprConfig": { + "type": "object", + "description": "App Dapr configuration.", + "properties": { + "enabled": { + "type": "boolean", + "description": "Boolean indicating if the Dapr side car is enabled", + "default": false + }, + "appId": { + "type": "string", + "description": "Dapr application identifier" + }, + "appPort": { + "type": "integer", + "format": "int32", + "description": "Tells Dapr which port your application is listening on" + }, + "httpReadBufferSize": { + "type": "integer", + "format": "int32", + "description": "Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB." + }, + "httpMaxRequestSize": { + "type": "integer", + "format": "int32", + "description": "Increasing max size of request body http servers parameter in MB to handle uploading of big files. Default is 4 MB." + }, + "logLevel": { + "$ref": "#/definitions/DaprLogLevel", + "description": "Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info." + }, + "enableApiLogging": { + "type": "boolean", + "description": "Enables API logging for the Dapr sidecar" + } + } + }, + "DaprLogLevel": { + "type": "string", + "description": "Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info.", + "enum": [ + "info", + "debug", + "warn", + "error" + ], + "x-ms-enum": { + "name": "DaprLogLevel", + "modelAsString": true, + "values": [ + { + "name": "info", + "value": "info" + }, + { + "name": "debug", + "value": "debug" + }, + { + "name": "warn", + "value": "warn" + }, + { + "name": "error", + "value": "error" + } + ] + } + }, + "DataProviderMetadata": { + "type": "object", + "description": "Additional configuration for a data providers", + "properties": { + "providerName": { + "type": "string" + }, + "propertyBag": { + "type": "array", + "description": "Settings for the data provider", + "items": { + "$ref": "#/definitions/KeyValuePairStringObject" + }, + "readOnly": true, + "x-ms-identifiers": [ + "key" + ] + } + } + }, + "DataSource": { + "type": "object", + "description": "Class representing data source used by the detectors", + "properties": { + "instructions": { + "type": "array", + "description": "Instructions if any for the data source", + "items": { + "type": "string" + } + }, + "dataSourceUri": { + "type": "array", + "description": "Datasource Uri Links", + "items": { + "$ref": "#/definitions/NameValuePair" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "DataTableResponseColumn": { + "type": "object", + "description": "Column definition", + "properties": { + "columnName": { + "type": "string", + "description": "Name of the column" + }, + "dataType": { + "type": "string", + "description": "Data type which looks like 'String' or 'Int32'." + }, + "columnType": { + "type": "string", + "description": "Column Type" + } + } + }, + "DataTableResponseObject": { + "type": "object", + "description": "Data Table which defines columns and raw row values", + "properties": { + "tableName": { + "type": "string", + "description": "Name of the table" + }, + "columns": { + "type": "array", + "description": "List of columns with data types", + "items": { + "$ref": "#/definitions/DataTableResponseColumn" + }, + "x-ms-identifiers": [ + "columnName" + ] + }, + "rows": { + "type": "array", + "description": "Raw row values", + "items": { + "type": "array", + "items": { + "type": "string" + } + }, + "x-ms-identifiers": [] + } + } + }, + "DatabaseBackupSetting": { + "type": "object", + "description": "Database backup settings.", + "properties": { + "databaseType": { + "$ref": "#/definitions/DatabaseType", + "description": "Database type (e.g. SqlAzure / MySql)." + }, + "name": { + "type": "string" + }, + "connectionStringName": { + "type": "string", + "description": "Contains a connection string name that is linked to the SiteConfig.ConnectionStrings.\nThis is used during restore with overwrite connection strings options." + }, + "connectionString": { + "type": "string", + "description": "Contains a connection string to a database which is being backed up or restored. If the restore should happen to a new database, the database name inside is the new one." + } + }, + "required": [ + "databaseType" + ] + }, + "DatabaseConnection": { + "type": "object", + "description": "Static Site Database Connection resource.", + "properties": { + "properties": { + "$ref": "#/definitions/DatabaseConnectionProperties", + "description": "DatabaseConnection resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DatabaseConnectionCollection": { + "type": "object", + "description": "Collection of static site database connections.", + "properties": { + "value": { + "type": "array", + "description": "The DatabaseConnection items on this page", + "items": { + "$ref": "#/definitions/DatabaseConnection" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DatabaseConnectionOverview": { + "type": "object", + "description": "Static Site Database Connection overview.", + "properties": { + "resourceId": { + "type": "string", + "description": "The resource id of the database.", + "readOnly": true + }, + "connectionIdentity": { + "type": "string", + "description": "If present, the identity is used in conjunction with connection string to connect to the database. Use of the system-assigned managed identity is indicated with the string 'SystemAssigned', while use of a user-assigned managed identity is indicated with the resource id of the managed identity resource.", + "readOnly": true + }, + "region": { + "type": "string", + "description": "The region of the database resource.", + "readOnly": true + }, + "configurationFiles": { + "type": "array", + "description": "A list of configuration files associated with this database connection.", + "items": { + "$ref": "#/definitions/StaticSiteDatabaseConnectionConfigurationFileOverview" + }, + "readOnly": true, + "x-ms-identifiers": [ + "fileName" + ] + }, + "name": { + "type": "string", + "description": "If present, the name of this database connection resource.", + "readOnly": true + } + } + }, + "DatabaseConnectionPatchRequest": { + "type": "object", + "description": "Static Site Database Connection Request Properties resource when patching", + "properties": { + "properties": { + "$ref": "#/definitions/DatabaseConnectionPatchRequestProperties", + "description": "DatabaseConnectionPatchRequest resource specific properties", + "x-ms-client-flatten": true + } + } + }, + "DatabaseConnectionPatchRequestProperties": { + "type": "object", + "description": "DatabaseConnectionPatchRequest resource specific properties", + "properties": { + "resourceId": { + "type": "string", + "description": "The resource id of the database." + }, + "connectionIdentity": { + "type": "string", + "description": "If present, the identity is used in conjunction with connection string to connect to the database. Use of the system-assigned managed identity is indicated with the string 'SystemAssigned', while use of a user-assigned managed identity is indicated with the resource id of the managed identity resource." + }, + "connectionString": { + "type": "string", + "description": "The connection string to use to connect to the database." + }, + "region": { + "type": "string", + "description": "The region of the database resource." + } + } + }, + "DatabaseConnectionProperties": { + "type": "object", + "description": "DatabaseConnection resource specific properties", + "properties": { + "resourceId": { + "type": "string", + "description": "The resource id of the database." + }, + "connectionIdentity": { + "type": "string", + "description": "If present, the identity is used in conjunction with connection string to connect to the database. Use of the system-assigned managed identity is indicated with the string 'SystemAssigned', while use of a user-assigned managed identity is indicated with the resource id of the managed identity resource." + }, + "connectionString": { + "type": "string", + "description": "The connection string to use to connect to the database." + }, + "region": { + "type": "string", + "description": "The region of the database resource." + }, + "configurationFiles": { + "type": "array", + "description": "A list of configuration files associated with this database connection.", + "items": { + "$ref": "#/definitions/StaticSiteDatabaseConnectionConfigurationFileOverview" + }, + "readOnly": true, + "x-ms-identifiers": [ + "fileName" + ] + } + }, + "required": [ + "resourceId", + "region" + ] + }, + "DatabaseType": { + "type": "string", + "description": "Database type (e.g. SqlAzure / MySql).", + "enum": [ + "SqlAzure", + "MySql", + "LocalMySql", + "PostgreSql" + ], + "x-ms-enum": { + "name": "DatabaseType", + "modelAsString": true, + "values": [ + { + "name": "SqlAzure", + "value": "SqlAzure" + }, + { + "name": "MySql", + "value": "MySql" + }, + { + "name": "LocalMySql", + "value": "LocalMySql" + }, + { + "name": "PostgreSql", + "value": "PostgreSql" + } + ] + } + }, + "DayOfWeek": { + "type": "string", + "description": "The day of the week.", + "enum": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "x-ms-enum": { + "name": "DayOfWeek", + "modelAsString": false + } + }, + "DaysOfWeek": { + "type": "string", + "enum": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "x-ms-enum": { + "name": "DaysOfWeek", + "modelAsString": false + } + }, + "DefaultAction": { + "type": "string", + "description": "Default action for main access restriction if no rules are matched.", + "enum": [ + "Allow", + "Deny" + ], + "x-ms-enum": { + "name": "DefaultAction", + "modelAsString": true, + "values": [ + { + "name": "Allow", + "value": "Allow" + }, + { + "name": "Deny", + "value": "Deny" + } + ] + } + }, + "DefaultAuthorizationPolicy": { + "type": "object", + "description": "The configuration settings of the Azure Active Directory default authorization policy.", + "properties": { + "allowedPrincipals": { + "$ref": "#/definitions/AllowedPrincipals", + "description": "The configuration settings of the Azure Active Directory allowed principals." + }, + "allowedApplications": { + "type": "array", + "description": "The configuration settings of the Azure Active Directory allowed applications.", + "items": { + "type": "string" + } + } + } + }, + "DefaultErrorResponse": { + "type": "object", + "description": "App Service error response.", + "properties": { + "error": { + "$ref": "#/definitions/DefaultErrorResponseError", + "description": "Error model.", + "readOnly": true + } + } + }, + "DefaultErrorResponseError": { + "type": "object", + "description": "Error model.", + "properties": { + "code": { + "type": "string", + "description": "Standardized string to programmatically identify the error.", + "readOnly": true + }, + "message": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + }, + "target": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/DefaultErrorResponseErrorDetailsItem" + }, + "x-ms-identifiers": [] + }, + "innererror": { + "type": "string", + "description": "More information to debug error.", + "readOnly": true + } + } + }, + "DefaultErrorResponseErrorDetailsItem": { + "type": "object", + "description": "Detailed errors.", + "properties": { + "code": { + "type": "string", + "description": "Standardized string to programmatically identify the error.", + "readOnly": true + }, + "message": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + }, + "target": { + "type": "string", + "description": "Detailed error description and debugging information.", + "readOnly": true + } + } + }, + "DefaultIdentity": { + "type": "object", + "properties": { + "identityType": { + "$ref": "#/definitions/ManagedServiceIdentityType" + }, + "userAssignedIdentityResourceId": { + "type": "string" + } + } + }, + "DeletedAppRestoreRequest": { + "type": "object", + "description": "Details about restoring a deleted app.", + "properties": { + "properties": { + "$ref": "#/definitions/DeletedAppRestoreRequestProperties", + "description": "DeletedAppRestoreRequest resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "DeletedAppRestoreRequestProperties": { + "type": "object", + "description": "DeletedAppRestoreRequest resource specific properties", + "properties": { + "deletedSiteId": { + "type": "string", + "description": "ARM resource ID of the deleted app. Example:\n/subscriptions/{subId}/providers/Microsoft.Web/deletedSites/{deletedSiteId}" + }, + "recoverConfiguration": { + "type": "boolean", + "description": "If true, deleted site configuration, in addition to content, will be restored." + }, + "snapshotTime": { + "type": "string", + "description": "Point in time to restore the deleted app from, formatted as a DateTime string.\nIf unspecified, default value is the time that the app was deleted." + }, + "useDRSecondary": { + "type": "boolean", + "description": "If true, the snapshot is retrieved from DRSecondary endpoint." + } + } + }, + "DeletedSite": { + "type": "object", + "description": "A deleted app.", + "properties": { + "properties": { + "$ref": "#/definitions/DeletedSiteProperties", + "description": "DeletedSite resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DeletedSiteProperties": { + "type": "object", + "description": "DeletedSite resource specific properties", + "properties": { + "deletedSiteId": { + "type": "integer", + "format": "int32", + "description": "Numeric id for the deleted site", + "readOnly": true + }, + "deletedTimestamp": { + "type": "string", + "description": "Time in UTC when the app was deleted.", + "readOnly": true + }, + "subscription": { + "type": "string", + "description": "Subscription containing the deleted site", + "readOnly": true + }, + "resourceGroup": { + "type": "string", + "description": "ResourceGroup that contained the deleted site", + "readOnly": true + }, + "deletedSiteName": { + "type": "string", + "description": "Name of the deleted site", + "readOnly": true + }, + "slot": { + "type": "string", + "description": "Slot of the deleted site", + "readOnly": true + }, + "kind": { + "type": "string", + "description": "Kind of site that was deleted", + "readOnly": true + }, + "geoRegionName": { + "type": "string", + "description": "Geo Region of the deleted site", + "readOnly": true + } + } + }, + "DeletedWebAppCollection": { + "type": "object", + "description": "Collection of deleted apps.", + "properties": { + "value": { + "type": "array", + "description": "The DeletedSite items on this page", + "items": { + "$ref": "#/definitions/DeletedSite" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "Deployment": { + "type": "object", + "description": "User credentials used for publishing activity.", + "properties": { + "properties": { + "$ref": "#/definitions/DeploymentProperties", + "description": "Deployment resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DeploymentBuildStatus": { + "type": "string", + "description": "Deployment build status.", + "enum": [ + "TimedOut", + "RuntimeFailed", + "BuildAborted", + "BuildFailed", + "BuildRequestReceived", + "BuildPending", + "BuildInProgress", + "BuildSuccessful", + "PostBuildRestartRequired", + "StartPolling", + "StartPollingWithRestart", + "RuntimeStarting", + "RuntimeSuccessful" + ], + "x-ms-enum": { + "name": "DeploymentBuildStatus", + "modelAsString": true, + "values": [ + { + "name": "TimedOut", + "value": "TimedOut" + }, + { + "name": "RuntimeFailed", + "value": "RuntimeFailed" + }, + { + "name": "BuildAborted", + "value": "BuildAborted" + }, + { + "name": "BuildFailed", + "value": "BuildFailed" + }, + { + "name": "BuildRequestReceived", + "value": "BuildRequestReceived" + }, + { + "name": "BuildPending", + "value": "BuildPending" + }, + { + "name": "BuildInProgress", + "value": "BuildInProgress" + }, + { + "name": "BuildSuccessful", + "value": "BuildSuccessful" + }, + { + "name": "PostBuildRestartRequired", + "value": "PostBuildRestartRequired" + }, + { + "name": "StartPolling", + "value": "StartPolling" + }, + { + "name": "StartPollingWithRestart", + "value": "StartPollingWithRestart" + }, + { + "name": "RuntimeStarting", + "value": "RuntimeStarting" + }, + { + "name": "RuntimeSuccessful", + "value": "RuntimeSuccessful" + } + ] + } + }, + "DeploymentCollection": { + "type": "object", + "description": "Collection of app deployments.", + "properties": { + "value": { + "type": "array", + "description": "The Deployment items on this page", + "items": { + "$ref": "#/definitions/Deployment" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DeploymentLocations": { + "type": "object", + "description": "List of available locations (regions or App Service Environments) for\ndeployment of App Service resources.", + "properties": { + "locations": { + "type": "array", + "description": "Available regions.", + "items": { + "$ref": "#/definitions/GeoRegion" + } + }, + "hostingEnvironments": { + "type": "array", + "description": "Available App Service Environments with full descriptions of the environments.", + "items": { + "$ref": "#/definitions/AppServiceEnvironment" + }, + "x-ms-identifiers": [] + }, + "hostingEnvironmentDeploymentInfos": { + "type": "array", + "description": "Available App Service Environments with basic information.", + "items": { + "$ref": "#/definitions/HostingEnvironmentDeploymentInfo" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "DeploymentProperties": { + "type": "object", + "description": "Deployment resource specific properties", + "properties": { + "status": { + "type": "integer", + "format": "int32", + "description": "Deployment status." + }, + "message": { + "type": "string", + "description": "Details about deployment status." + }, + "author": { + "type": "string", + "description": "Who authored the deployment." + }, + "deployer": { + "type": "string", + "description": "Who performed the deployment." + }, + "author_email": { + "type": "string", + "description": "Author email.", + "x-ms-client-name": "authorEmail" + }, + "start_time": { + "type": "string", + "format": "date-time", + "description": "Start time.", + "x-ms-client-name": "startTime" + }, + "end_time": { + "type": "string", + "format": "date-time", + "description": "End time.", + "x-ms-client-name": "endTime" + }, + "active": { + "type": "boolean", + "description": "True if deployment is currently active, false if completed and null if not started." + }, + "details": { + "type": "string", + "description": "Details on deployment." + } + } + }, + "DetectorAbnormalTimePeriod": { + "type": "object", + "description": "Class representing Abnormal Time Period detected.", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the correlated event" + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the correlated event" + }, + "message": { + "type": "string", + "description": "Message describing the event" + }, + "source": { + "type": "string", + "description": "Represents the name of the Detector" + }, + "priority": { + "type": "number", + "format": "double", + "description": "Represents the rank of the Detector" + }, + "metaData": { + "type": "array", + "description": "Downtime metadata", + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/NameValuePair" + } + }, + "x-ms-identifiers": [ + "name" + ] + }, + "type": { + "$ref": "#/definitions/IssueType", + "description": "Represents the type of the Detector" + }, + "solutions": { + "type": "array", + "description": "List of proposed solutions", + "items": { + "$ref": "#/definitions/Solution" + } + } + } + }, + "DetectorDefinition": { + "type": "object", + "description": "Class representing detector definition", + "properties": { + "displayName": { + "type": "string", + "description": "Display name of the detector", + "readOnly": true + }, + "description": { + "type": "string", + "description": "Description of the detector", + "readOnly": true + }, + "rank": { + "type": "number", + "format": "double", + "description": "Detector Rank", + "readOnly": true + }, + "isEnabled": { + "type": "boolean", + "description": "Flag representing whether detector is enabled or not.", + "readOnly": true + } + } + }, + "DetectorDefinitionResource": { + "type": "object", + "description": "ARM resource for a detector definition", + "properties": { + "properties": { + "$ref": "#/definitions/DetectorDefinition", + "description": "Core resource properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DetectorInfo": { + "type": "object", + "description": "Definition of Detector", + "properties": { + "id": { + "type": "string", + "description": "Id of detector", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Name of detector", + "readOnly": true + }, + "description": { + "type": "string", + "description": "Short description of the detector and its purpose.", + "readOnly": true + }, + "author": { + "type": "string", + "description": "Author of the detector.", + "readOnly": true + }, + "category": { + "type": "string", + "description": "Problem category. This serves for organizing group for detectors.", + "readOnly": true + }, + "supportTopicList": { + "type": "array", + "description": "List of Support Topics for which this detector is enabled.", + "items": { + "$ref": "#/definitions/SupportTopic" + }, + "readOnly": true + }, + "analysisType": { + "type": "array", + "description": "Analysis Types for which this detector should apply to.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "type": { + "$ref": "#/definitions/DetectorType", + "description": "Whether this detector is an Analysis Detector or not.", + "readOnly": true + }, + "score": { + "type": "number", + "format": "float", + "description": "Defines score of a detector to power ML based matching.", + "readOnly": true + } + } + }, + "DetectorResponse": { + "type": "object", + "description": "Class representing Response from Detector", + "properties": { + "properties": { + "$ref": "#/definitions/DetectorResponseProperties", + "description": "DetectorResponse resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DetectorResponseCollection": { + "type": "object", + "description": "Collection of detector responses", + "properties": { + "value": { + "type": "array", + "description": "The DetectorResponse items on this page", + "items": { + "$ref": "#/definitions/DetectorResponse" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DetectorResponseProperties": { + "type": "object", + "description": "DetectorResponse resource specific properties", + "properties": { + "metadata": { + "$ref": "#/definitions/DetectorInfo", + "description": "metadata for the detector" + }, + "dataset": { + "type": "array", + "description": "Data Set", + "items": { + "$ref": "#/definitions/DiagnosticData" + }, + "x-ms-identifiers": [] + }, + "status": { + "$ref": "#/definitions/Status", + "description": "Indicates status of the most severe insight." + }, + "dataProvidersMetadata": { + "type": "array", + "description": "Additional configuration for different data providers to be used by the UI", + "items": { + "$ref": "#/definitions/DataProviderMetadata" + }, + "x-ms-identifiers": [ + "providerName" + ] + }, + "suggestedUtterances": { + "$ref": "#/definitions/QueryUtterancesResults", + "description": "Suggested utterances where the detector can be applicable." + } + } + }, + "DetectorType": { + "type": "string", + "description": "Whether this detector is an Analysis Detector or not.", + "enum": [ + "Detector", + "Analysis", + "CategoryOverview" + ], + "x-ms-enum": { + "name": "DetectorType", + "modelAsString": false + } + }, + "DiagnosticAnalysis": { + "type": "object", + "description": "Class representing a diagnostic analysis done on an application", + "properties": { + "properties": { + "$ref": "#/definitions/DiagnosticAnalysisProperties", + "description": "DiagnosticAnalysis resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "DiagnosticAnalysisCollection": { + "type": "object", + "description": "Collection of Diagnostic Analyses", + "properties": { + "value": { + "type": "array", + "description": "The AnalysisDefinition items on this page", + "items": { + "$ref": "#/definitions/AnalysisDefinition" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiagnosticAnalysisProperties": { + "type": "object", + "description": "DiagnosticAnalysis resource specific properties", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the period" + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the period" + }, + "abnormalTimePeriods": { + "type": "array", + "description": "List of time periods.", + "items": { + "$ref": "#/definitions/AbnormalTimePeriod" + }, + "x-ms-identifiers": [] + }, + "payload": { + "type": "array", + "description": "Data by each detector", + "items": { + "$ref": "#/definitions/AnalysisData" + }, + "x-ms-identifiers": [ + "source" + ] + }, + "nonCorrelatedDetectors": { + "type": "array", + "description": "Data by each detector for detectors that did not corelate", + "items": { + "$ref": "#/definitions/DetectorDefinition" + }, + "x-ms-identifiers": [ + "displayName" + ] + } + } + }, + "DiagnosticCategory": { + "type": "object", + "description": "Class representing detector definition", + "properties": { + "properties": { + "$ref": "#/definitions/DiagnosticCategoryProperties", + "description": "DiagnosticCategory resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "DiagnosticCategoryCollection": { + "type": "object", + "description": "Collection of Diagnostic Categories", + "properties": { + "value": { + "type": "array", + "description": "The DiagnosticCategory items on this page", + "items": { + "$ref": "#/definitions/DiagnosticCategory" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiagnosticCategoryProperties": { + "type": "object", + "description": "DiagnosticCategory resource specific properties", + "properties": { + "description": { + "type": "string", + "description": "Description of the diagnostic category", + "readOnly": true + } + } + }, + "DiagnosticData": { + "type": "object", + "description": "Set of data with rendering instructions", + "properties": { + "table": { + "$ref": "#/definitions/DataTableResponseObject", + "description": "Data in table form" + }, + "renderingProperties": { + "$ref": "#/definitions/Rendering", + "description": "Properties that describe how the table should be rendered" + } + } + }, + "DiagnosticDetectorCollection": { + "type": "object", + "description": "Collection of Diagnostic Detectors", + "properties": { + "value": { + "type": "array", + "description": "The DetectorDefinitionResource items on this page", + "items": { + "$ref": "#/definitions/DetectorDefinitionResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "DiagnosticDetectorResponse": { + "type": "object", + "description": "Class representing Response from Diagnostic Detectors", + "properties": { + "properties": { + "$ref": "#/definitions/DiagnosticDetectorResponseProperties", + "description": "DiagnosticDetectorResponse resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "DiagnosticDetectorResponseProperties": { + "type": "object", + "description": "DiagnosticDetectorResponse resource specific properties", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the period" + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the period" + }, + "issueDetected": { + "type": "boolean", + "description": "Flag representing Issue was detected." + }, + "detectorDefinition": { + "$ref": "#/definitions/DetectorDefinition", + "description": "Detector's definition" + }, + "metrics": { + "type": "array", + "description": "Metrics provided by the detector", + "items": { + "$ref": "#/definitions/DiagnosticMetricSet" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "abnormalTimePeriods": { + "type": "array", + "description": "List of Correlated events found by the detector", + "items": { + "$ref": "#/definitions/DetectorAbnormalTimePeriod" + }, + "x-ms-identifiers": [] + }, + "data": { + "type": "array", + "description": "Additional Data that detector wants to send.", + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/NameValuePair" + } + }, + "x-ms-identifiers": [ + "name" + ] + }, + "responseMetaData": { + "$ref": "#/definitions/ResponseMetaData", + "description": "Meta Data" + } + } + }, + "DiagnosticMetricSample": { + "type": "object", + "description": "Class representing Diagnostic Metric", + "properties": { + "timestamp": { + "type": "string", + "format": "date-time", + "description": "Time at which metric is measured" + }, + "roleInstance": { + "type": "string", + "description": "Role Instance. Null if this counter is not per instance\nThis is returned and should be whichever instance name we desire to be returned\ni.e. CPU and Memory return RDWORKERNAME (LargeDed..._IN_0)\nwhere RDWORKERNAME is Machine name below and RoleInstance name in parenthesis" + }, + "total": { + "type": "number", + "format": "double", + "description": "Total value of the metric. If multiple measurements are made this will have sum of all." + }, + "maximum": { + "type": "number", + "format": "double", + "description": "Maximum of the metric sampled during the time period" + }, + "minimum": { + "type": "number", + "format": "double", + "description": "Minimum of the metric sampled during the time period" + }, + "isAggregated": { + "type": "boolean", + "description": "Whether the values are aggregates across all workers or not" + } + } + }, + "DiagnosticMetricSet": { + "type": "object", + "description": "Class representing Diagnostic Metric information", + "properties": { + "name": { + "type": "string", + "description": "Name of the metric" + }, + "unit": { + "type": "string", + "description": "Metric's unit" + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the period" + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the period" + }, + "timeGrain": { + "type": "string", + "description": "Presented time grain. Supported grains at the moment are PT1M, PT1H, P1D" + }, + "values": { + "type": "array", + "description": "Collection of metric values for the selected period based on the {Microsoft.Web.Hosting.Administration.DiagnosticMetricSet.TimeGrain}", + "items": { + "$ref": "#/definitions/DiagnosticMetricSample" + }, + "x-ms-identifiers": [] + } + } + }, + "Dimension": { + "type": "object", + "description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app,\nwhere instance name is dimension of the metric HTTP request", + "properties": { + "name": { + "type": "string" + }, + "displayName": { + "type": "string" + }, + "internalName": { + "type": "string" + }, + "toBeExportedForShoebox": { + "type": "boolean" + } + } + }, + "DnlResourceNameAvailability": { + "type": "object", + "description": "Information regarding availability of a resource name for DNL apps with regionalized default hostnames.", + "properties": { + "hostName": { + "type": "string" + }, + "nameAvailable": { + "type": "boolean", + "description": "true indicates name is valid and available. false indicates the name is invalid, unavailable, or both." + }, + "reason": { + "$ref": "#/definitions/InAvailabilityReasonType", + "description": "Invalid indicates the name provided does not match Azure App Service naming requirements. AlreadyExists indicates that the name is already in use and is therefore unavailable." + }, + "message": { + "type": "string", + "description": "If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that resource name is already in use, and direct them to select a different name." + } + } + }, + "DnlResourceNameAvailabilityRequest": { + "type": "object", + "properties": { + "resourceGroupName": { + "type": "string", + "description": "Resource group name" + }, + "autoGeneratedDomainNameLabelScope": { + "type": "string", + "description": "Indicates the endpoint name reuse scope.The default value is TenantReuse.\nSupported values are TenantReuse, SubscriptionReuse, ResourceGroupReuse, NoReuse" + }, + "name": { + "type": "string", + "description": "Resource name to verify." + }, + "type": { + "$ref": "#/definitions/CheckNameResourceTypes", + "description": "Resource type used for verification." + } + }, + "required": [ + "name", + "type" + ] + }, + "DnsVerificationTestResult": { + "type": "string", + "description": "DNS verification test result.", + "enum": [ + "Passed", + "Failed", + "Skipped" + ], + "x-ms-enum": { + "name": "DnsVerificationTestResult", + "modelAsString": false + } + }, + "EnabledConfig": { + "type": "object", + "description": "Enabled configuration.", + "properties": { + "enabled": { + "type": "boolean", + "description": "True if configuration is enabled, false if it is disabled and null if configuration is not set." + } + } + }, + "EndpointDependency": { + "type": "object", + "description": "A domain name that a service is reached at, including details of the current connection status.", + "properties": { + "domainName": { + "type": "string", + "description": "The domain name of the dependency." + }, + "endpointDetails": { + "type": "array", + "description": "The IP Addresses and Ports used when connecting to DomainName.", + "items": { + "$ref": "#/definitions/EndpointDetail" + }, + "x-ms-identifiers": [ + "ipAddress", + "port" + ] + } + } + }, + "EndpointDetail": { + "type": "object", + "description": "Current TCP connectivity information from the App Service Environment to a single endpoint.", + "properties": { + "ipAddress": { + "type": "string", + "description": "An IP Address that Domain Name currently resolves to." + }, + "port": { + "type": "integer", + "format": "int32", + "description": "The port an endpoint is connected to." + }, + "latency": { + "type": "number", + "format": "double", + "description": "The time in milliseconds it takes for a TCP connection to be created from the App Service Environment to this IpAddress at this Port." + }, + "isAccessible": { + "type": "boolean", + "description": "Whether it is possible to create a TCP connection from the App Service Environment to this IpAddress at this Port." + } + } + }, + "EndpointTrafficConfig": { + "type": "object", + "description": "Traffic configuration for a single endpoint (region) within a ManagedTrafficConfig.", + "properties": { + "region": { + "type": "string", + "description": "Normalized Azure region name (e.g., \"eastus\", \"westus\").", + "minLength": 1 + }, + "priority": { + "type": "integer", + "format": "int32", + "description": "Priority of the endpoint (1-1000). Lower values receive traffic first in Priority routing.", + "minimum": 1, + "maximum": 1000 + }, + "weight": { + "type": "integer", + "format": "int32", + "description": "Weight of the endpoint (1-1000). Higher values receive proportionally more traffic in Weighted routing.", + "minimum": 1, + "maximum": 1000 + }, + "isWeightAutoComputed": { + "type": "boolean", + "description": "Whether the weight was auto-computed from the silo's worker count." + } + }, + "required": [ + "region" + ] + }, + "EnterpriseGradeCdnStatus": { + "type": "string", + "description": "State indicating the status of the enterprise grade CDN serving traffic to the static web app.", + "enum": [ + "Enabled", + "Enabling", + "Disabled", + "Disabling" + ], + "x-ms-enum": { + "name": "EnterpriseGradeCdnStatus", + "modelAsString": true, + "values": [ + { + "name": "Enabled", + "value": "Enabled" + }, + { + "name": "Enabling", + "value": "Enabling" + }, + { + "name": "Disabled", + "value": "Disabled" + }, + { + "name": "Disabling", + "value": "Disabling" + } + ] + } + }, + "EnvironmentVariable": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Environment variable name" + }, + "value": { + "type": "string", + "description": "The value of this environment variable must be the name of an AppSetting. The actual value of the environment variable in container will be retrieved from the specified AppSetting at runtime. If the AppSetting is not found, the value will be set to an empty string in the container at runtime." + } + }, + "required": [ + "name", + "value" + ] + }, + "ErrorEntity": { + "type": "object", + "description": "Body of the error response returned from the API.", + "properties": { + "extendedCode": { + "type": "string", + "description": "Type of error." + }, + "messageTemplate": { + "type": "string", + "description": "Message template." + }, + "parameters": { + "type": "array", + "description": "Parameters for the template.", + "items": { + "type": "string" + } + }, + "innerErrors": { + "type": "array", + "description": "Inner errors.", + "items": { + "$ref": "#/definitions/ErrorEntity" + }, + "x-ms-identifiers": [] + }, + "details": { + "type": "array", + "description": "Error Details.", + "items": { + "$ref": "#/definitions/ErrorEntity" + }, + "x-ms-identifiers": [] + }, + "target": { + "type": "string", + "description": "The error target." + }, + "code": { + "type": "string", + "description": "Basic error code." + }, + "message": { + "type": "string", + "description": "Any details of the error." + } + } + }, + "ErrorInfo": { + "type": "object", + "description": "The error info.", + "properties": { + "code": { + "type": "string", + "description": "The error code." + } + }, + "required": [ + "code" + ] + }, + "ErrorProperties": { + "type": "object", + "description": "Error properties indicate why the Logic service was not able to process the incoming request. The reason is provided in the error message.", + "properties": { + "code": { + "type": "string", + "description": "Error code." + }, + "message": { + "type": "string", + "description": "Error message indicating why the operation failed." + } + } + }, + "ErrorResponse": { + "type": "object", + "description": "Error response indicates Logic service is not able to process the incoming request. The error property contains the error details.", + "properties": { + "error": { + "$ref": "#/definitions/ErrorProperties", + "description": "The error properties." + } + } + }, + "Experiments": { + "type": "object", + "description": "Routing rules in production experiments.", + "properties": { + "rampUpRules": { + "type": "array", + "description": "List of ramp-up rules.", + "items": { + "$ref": "#/definitions/RampUpRule" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "Expression": { + "type": "object", + "description": "The expression.", + "properties": { + "text": { + "type": "string", + "description": "The text." + }, + "value": { + "description": "Anything" + }, + "subexpressions": { + "type": "array", + "description": "The sub expressions.", + "items": { + "$ref": "#/definitions/Expression" + }, + "x-ms-identifiers": [] + }, + "error": { + "$ref": "#/definitions/AzureResourceErrorInfo", + "description": "The azure resource error info." + } + } + }, + "ExpressionRoot": { + "type": "object", + "description": "The expression root.", + "properties": { + "path": { + "type": "string", + "description": "The path." + } + }, + "allOf": [ + { + "$ref": "#/definitions/Expression" + } + ] + }, + "ExpressionTraces": { + "type": "object", + "description": "The expression traces.", + "properties": { + "value": {}, + "inputs": { + "type": "array", + "items": { + "$ref": "#/definitions/ExpressionRoot" + }, + "x-ms-identifiers": [ + "path" + ] + }, + "nextLink": { + "type": "string", + "description": "The link used to get the next page of recommendations." + } + } + }, + "ExtendedLocation": { + "type": "object", + "description": "Extended Location.", + "properties": { + "name": { + "type": "string", + "description": "Name of extended location." + }, + "type": { + "type": "string", + "description": "Type of extended location.", + "readOnly": true + } + } + }, + "Facebook": { + "type": "object", + "description": "The configuration settings of the Facebook provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the Facebook provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/AppRegistration", + "description": "The configuration settings of the app registration for the Facebook provider." + }, + "graphApiVersion": { + "type": "string", + "description": "The version of the Facebook api to be used while logging in." + }, + "login": { + "$ref": "#/definitions/LoginScopes", + "description": "The configuration settings of the login flow." + } + } + }, + "FileSystemApplicationLogsConfig": { + "type": "object", + "description": "Application logs to file system configuration.", + "properties": { + "level": { + "type": "string", + "description": "Log level.", + "default": "Off", + "enum": [ + "Off", + "Verbose", + "Information", + "Warning", + "Error" + ], + "x-ms-enum": { + "name": "LogLevel", + "modelAsString": false + } + } + } + }, + "FileSystemHttpLogsConfig": { + "type": "object", + "description": "Http logs to file system configuration.", + "properties": { + "retentionInMb": { + "type": "integer", + "format": "int32", + "description": "Maximum size in megabytes that http log files can use.\nWhen reached old log files will be removed to make space for new ones.\nValue can range between 25 and 100.", + "minimum": 25, + "maximum": 100 + }, + "retentionInDays": { + "type": "integer", + "format": "int32", + "description": "Retention in days.\nRemove files older than X days.\n0 or lower means no retention." + }, + "enabled": { + "type": "boolean", + "description": "True if configuration is enabled, false if it is disabled and null if configuration is not set." + } + } + }, + "FileSystemTokenStore": { + "type": "object", + "description": "The configuration settings of the storage of the tokens if a file system is used.", + "properties": { + "directory": { + "type": "string", + "description": "The directory in which the tokens will be stored." + } + } + }, + "FlowAccessControlConfiguration": { + "type": "object", + "description": "The access control configuration.", + "properties": { + "triggers": { + "$ref": "#/definitions/FlowAccessControlConfigurationPolicy", + "description": "The access control configuration for invoking workflow triggers." + }, + "contents": { + "$ref": "#/definitions/FlowAccessControlConfigurationPolicy", + "description": "The access control configuration for accessing workflow run contents." + }, + "actions": { + "$ref": "#/definitions/FlowAccessControlConfigurationPolicy", + "description": "The access control configuration for workflow actions." + }, + "workflowManagement": { + "$ref": "#/definitions/FlowAccessControlConfigurationPolicy", + "description": "The access control configuration for workflow management." + } + } + }, + "FlowAccessControlConfigurationPolicy": { + "type": "object", + "description": "The access control configuration policy.", + "properties": { + "allowedCallerIpAddresses": { + "type": "array", + "description": "The allowed caller IP address ranges.", + "items": { + "$ref": "#/definitions/IpAddressRange" + }, + "x-ms-identifiers": [] + }, + "openAuthenticationPolicies": { + "$ref": "#/definitions/OpenAuthenticationAccessPolicies", + "description": "The authentication policies for workflow." + } + } + }, + "FlowEndpoints": { + "type": "object", + "description": "The flow endpoints configuration.", + "properties": { + "outgoingIpAddresses": { + "type": "array", + "description": "The outgoing ip address.", + "items": { + "$ref": "#/definitions/IpAddress" + }, + "x-ms-identifiers": [ + "address" + ] + }, + "accessEndpointIpAddresses": { + "type": "array", + "description": "The access endpoint ip address.", + "items": { + "$ref": "#/definitions/IpAddress" + }, + "x-ms-identifiers": [ + "address" + ] + } + } + }, + "FlowEndpointsConfiguration": { + "type": "object", + "description": "The endpoints configuration.", + "properties": { + "workflow": { + "$ref": "#/definitions/FlowEndpoints", + "description": "The workflow endpoints." + }, + "connector": { + "$ref": "#/definitions/FlowEndpoints", + "description": "The connector endpoints." + } + } + }, + "ForwardProxy": { + "type": "object", + "description": "The configuration settings of a forward proxy used to make the requests.", + "properties": { + "convention": { + "$ref": "#/definitions/ForwardProxyConvention", + "description": "The convention used to determine the url of the request made." + }, + "customHostHeaderName": { + "type": "string", + "description": "The name of the header containing the host of the request." + }, + "customProtoHeaderName": { + "type": "string", + "description": "The name of the header containing the scheme of the request." + } + } + }, + "ForwardProxyConvention": { + "type": "string", + "description": "The convention used to determine the url of the request made.", + "enum": [ + "NoProxy", + "Standard", + "Custom" + ], + "x-ms-enum": { + "name": "ForwardProxyConvention", + "modelAsString": false + } + }, + "FrontEndConfiguration": { + "type": "object", + "properties": { + "kind": { + "$ref": "#/definitions/FrontEndServiceType" + } + } + }, + "FrontEndServiceType": { + "type": "string", + "enum": [ + "NodePort", + "LoadBalancer" + ], + "x-ms-enum": { + "name": "FrontEndServiceType", + "modelAsString": false + } + }, + "FtpsState": { + "type": "string", + "description": "State of FTP / FTPS service", + "enum": [ + "AllAllowed", + "FtpsOnly", + "Disabled" + ], + "x-ms-enum": { + "name": "FtpsState", + "modelAsString": true, + "values": [ + { + "name": "AllAllowed", + "value": "AllAllowed" + }, + { + "name": "FtpsOnly", + "value": "FtpsOnly" + }, + { + "name": "Disabled", + "value": "Disabled" + } + ] + } + }, + "FunctionAppConfig": { + "type": "object", + "description": "Function app configuration.", + "properties": { + "deployment": { + "$ref": "#/definitions/FunctionsDeployment", + "description": "Function app deployment configuration." + }, + "runtime": { + "$ref": "#/definitions/FunctionsRuntime", + "description": "Function app runtime settings." + }, + "scaleAndConcurrency": { + "$ref": "#/definitions/FunctionsScaleAndConcurrency", + "description": "Function app scale and concurrency settings." + }, + "siteUpdateStrategy": { + "$ref": "#/definitions/FunctionsSiteUpdateStrategy", + "description": "Function app site update strategy configuration." + } + } + }, + "FunctionAppMajorVersion": { + "type": "object", + "description": "Function App stack major version.", + "properties": { + "displayText": { + "type": "string", + "description": "Function App stack major version (display only).", + "readOnly": true + }, + "value": { + "type": "string", + "description": "Function App stack major version name.", + "readOnly": true + }, + "minorVersions": { + "type": "array", + "description": "Minor versions associated with the major version.", + "items": { + "$ref": "#/definitions/FunctionAppMinorVersion" + }, + "readOnly": true, + "x-ms-identifiers": [ + "value" + ] + } + } + }, + "FunctionAppMinorVersion": { + "type": "object", + "description": "Function App stack minor version.", + "properties": { + "displayText": { + "type": "string", + "description": "Function App stack (display only).", + "readOnly": true + }, + "value": { + "type": "string", + "description": "Function App stack name.", + "readOnly": true + }, + "stackSettings": { + "$ref": "#/definitions/FunctionAppRuntimes", + "description": "Settings associated with the minor version.", + "readOnly": true + } + } + }, + "FunctionAppRuntimeSettings": { + "type": "object", + "description": "Function App runtime settings.", + "properties": { + "runtimeVersion": { + "type": "string", + "description": "Function App stack minor version (runtime only).", + "readOnly": true + }, + "remoteDebuggingSupported": { + "type": "boolean", + "description": "true if remote debugging is supported for the stack; otherwise, false.", + "readOnly": true + }, + "appInsightsSettings": { + "$ref": "#/definitions/AppInsightsWebAppStackSettings", + "description": "Application Insights settings associated with the minor version.", + "readOnly": true + }, + "gitHubActionSettings": { + "$ref": "#/definitions/GitHubActionWebAppStackSettings", + "description": "GitHub Actions settings associated with the minor version.", + "readOnly": true + }, + "appSettingsDictionary": { + "type": "object", + "description": "Application settings associated with the minor version.", + "additionalProperties": { + "type": "string" + }, + "readOnly": true + }, + "siteConfigPropertiesDictionary": { + "$ref": "#/definitions/SiteConfigPropertiesDictionary", + "description": "Configuration settings associated with the minor version.", + "readOnly": true + }, + "supportedFunctionsExtensionVersions": { + "type": "array", + "description": "List of supported Functions extension versions.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "isPreview": { + "type": "boolean", + "description": "true if the stack is in preview; otherwise, false.", + "readOnly": true + }, + "isDeprecated": { + "type": "boolean", + "description": "true if the stack is deprecated; otherwise, false.", + "readOnly": true + }, + "isHidden": { + "type": "boolean", + "description": "true if the stack should be hidden; otherwise, false.", + "readOnly": true + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "End-of-life date for the minor version.", + "readOnly": true + }, + "isAutoUpdate": { + "type": "boolean", + "description": "true if the stack version is auto-updated; otherwise, false.", + "readOnly": true + }, + "isEarlyAccess": { + "type": "boolean", + "description": "true if the minor version is early-access; otherwise, false.", + "readOnly": true + }, + "isDefault": { + "type": "boolean", + "description": "true if the minor version the default; otherwise, false.", + "readOnly": true + } + } + }, + "FunctionAppRuntimes": { + "type": "object", + "description": "Function App stack runtimes.", + "properties": { + "linuxRuntimeSettings": { + "$ref": "#/definitions/FunctionAppRuntimeSettings", + "description": "Linux-specific settings associated with the minor version.", + "readOnly": true + }, + "windowsRuntimeSettings": { + "$ref": "#/definitions/FunctionAppRuntimeSettings", + "description": "Windows-specific settings associated with the minor version.", + "readOnly": true + } + } + }, + "FunctionAppStack": { + "type": "object", + "description": "Function App Stack.", + "properties": { + "location": { + "type": "string", + "description": "Function App stack location.", + "readOnly": true + }, + "properties": { + "$ref": "#/definitions/FunctionAppStackProperties", + "description": "FunctionAppStack resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "FunctionAppStackCollection": { + "type": "object", + "description": "Collection of Function app Stacks", + "properties": { + "value": { + "type": "array", + "description": "The FunctionAppStack items on this page", + "items": { + "$ref": "#/definitions/FunctionAppStack" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "FunctionAppStackProperties": { + "type": "object", + "description": "FunctionAppStack resource specific properties", + "properties": { + "displayText": { + "type": "string", + "description": "Function App stack (display only).", + "readOnly": true + }, + "value": { + "type": "string", + "description": "Function App stack name.", + "readOnly": true + }, + "majorVersions": { + "type": "array", + "description": "List of major versions available.", + "items": { + "$ref": "#/definitions/FunctionAppMajorVersion" + }, + "readOnly": true, + "x-ms-identifiers": [ + "value" + ] + }, + "preferredOs": { + "$ref": "#/definitions/StackPreferredOs", + "description": "Function App stack preferred OS.", + "readOnly": true + } + } + }, + "FunctionEnvelope": { + "type": "object", + "description": "Function information.", + "properties": { + "properties": { + "$ref": "#/definitions/FunctionEnvelopeProperties", + "description": "FunctionEnvelope resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "FunctionEnvelopeCollection": { + "type": "object", + "description": "Collection of Kudu function information elements.", + "properties": { + "value": { + "type": "array", + "description": "The FunctionEnvelope items on this page", + "items": { + "$ref": "#/definitions/FunctionEnvelope" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "FunctionEnvelopeProperties": { + "type": "object", + "description": "FunctionEnvelope resource specific properties", + "properties": { + "function_app_id": { + "type": "string", + "description": "Function App ID.", + "x-ms-client-name": "functionAppId" + }, + "script_root_path_href": { + "type": "string", + "description": "Script root path URI.", + "x-ms-client-name": "scriptRootPathHref" + }, + "script_href": { + "type": "string", + "description": "Script URI.", + "x-ms-client-name": "scriptHref" + }, + "config_href": { + "type": "string", + "description": "Config URI.", + "x-ms-client-name": "configHref" + }, + "test_data_href": { + "type": "string", + "description": "Test data URI.", + "x-ms-client-name": "testDataHref" + }, + "secrets_file_href": { + "type": "string", + "description": "Secrets file URI.", + "x-ms-client-name": "secretsFileHref" + }, + "href": { + "type": "string", + "description": "Function URI." + }, + "config": { + "description": "Config information." + }, + "files": { + "type": "object", + "description": "File list.", + "additionalProperties": { + "type": "string" + } + }, + "test_data": { + "type": "string", + "description": "Test data used when testing via the Azure Portal.", + "x-ms-client-name": "testData" + }, + "invoke_url_template": { + "type": "string", + "description": "The invocation URL", + "x-ms-client-name": "invokeUrlTemplate" + }, + "language": { + "type": "string", + "description": "The function language" + }, + "isDisabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether the function is disabled" + } + } + }, + "FunctionSecrets": { + "type": "object", + "description": "Function secrets.", + "properties": { + "key": { + "type": "string", + "description": "Secret key." + }, + "trigger_url": { + "type": "string", + "description": "Trigger URL.", + "x-ms-client-name": "triggerUrl" + } + } + }, + "FunctionsAlwaysReadyConfig": { + "type": "object", + "description": "Sets the number of 'Always Ready' instances for a function group or a specific function.", + "properties": { + "name": { + "type": "string", + "description": "Either a function group or a function name is required. For additional information see https://aka.ms/flexconsumption/alwaysready." + }, + "instanceCount": { + "type": "integer", + "format": "int32", + "description": "Sets the number of 'Always Ready' instances for a given function group or a specific function. For additional information see https://aka.ms/flexconsumption/alwaysready." + } + } + }, + "FunctionsDeployment": { + "type": "object", + "description": "Configuration section for the function app deployment.", + "properties": { + "storage": { + "$ref": "#/definitions/FunctionsDeploymentStorage", + "description": "Storage for deployed package used by the function app." + } + } + }, + "FunctionsDeploymentStorage": { + "type": "object", + "description": "Storage for deployed package used by the function app.", + "properties": { + "type": { + "$ref": "#/definitions/FunctionsDeploymentStorageType", + "description": "Property to select Azure Storage type. Available options: blobContainer." + }, + "value": { + "type": "string", + "format": "uri", + "description": "Property to set the URL for the selected Azure Storage type. Example: For blobContainer, the value could be https://.blob.core.windows.net/." + }, + "authentication": { + "$ref": "#/definitions/FunctionsDeploymentStorageAuthentication", + "description": "Authentication method to access the storage account for deployment." + } + } + }, + "FunctionsDeploymentStorageAuthentication": { + "type": "object", + "description": "Authentication method to access the storage account for deployment.", + "properties": { + "type": { + "$ref": "#/definitions/AuthenticationType", + "description": "Property to select authentication type to access the selected storage account. Available options: SystemAssignedIdentity, UserAssignedIdentity, StorageAccountConnectionString." + }, + "userAssignedIdentityResourceId": { + "type": "string", + "description": "Use this property for UserAssignedIdentity. Set the resource ID of the identity. Do not set a value for this property when using other authentication type." + }, + "storageAccountConnectionStringName": { + "type": "string", + "description": "Use this property for StorageAccountConnectionString. Set the name of the app setting that has the storage account connection string. Do not set a value for this property when using other authentication type." + } + } + }, + "FunctionsDeploymentStorageType": { + "type": "string", + "description": "Property to select Azure Storage type. Available options: blobContainer.", + "enum": [ + "blobContainer" + ], + "x-ms-enum": { + "name": "FunctionsDeploymentStorageType", + "modelAsString": true, + "values": [ + { + "name": "blobContainer", + "value": "blobContainer" + } + ] + } + }, + "FunctionsRuntime": { + "type": "object", + "description": "Function app runtime name and version.", + "properties": { + "name": { + "$ref": "#/definitions/RuntimeName", + "description": "Function app runtime name. Available options: dotnet-isolated, node, java, powershell, python, custom" + }, + "version": { + "type": "string", + "description": "Function app runtime version. Example: 8 (for dotnet-isolated)", + "x-nullable": true + } + } + }, + "FunctionsScaleAndConcurrency": { + "type": "object", + "description": "Scale and concurrency settings for the function app.", + "properties": { + "alwaysReady": { + "type": "array", + "description": "'Always Ready' configuration for the function app.", + "items": { + "$ref": "#/definitions/FunctionsAlwaysReadyConfig" + } + }, + "maximumInstanceCount": { + "type": "integer", + "format": "int32", + "description": "The maximum number of instances for the function app." + }, + "instanceMemoryMB": { + "type": "integer", + "format": "int32", + "description": "Set the amount of memory allocated to each instance of the function app in MB. CPU and network bandwidth are allocated proportionally." + }, + "triggers": { + "$ref": "#/definitions/FunctionsScaleAndConcurrencyTriggers", + "description": "Scale and concurrency settings for the function app triggers." + } + } + }, + "FunctionsScaleAndConcurrencyTriggers": { + "type": "object", + "description": "Scale and concurrency settings for the function app triggers.", + "properties": { + "http": { + "$ref": "#/definitions/FunctionsScaleAndConcurrencyTriggersHttp", + "description": "Scale and concurrency settings for the HTTP trigger." + } + } + }, + "FunctionsScaleAndConcurrencyTriggersHttp": { + "type": "object", + "description": "Scale and concurrency settings for the HTTP trigger.", + "properties": { + "perInstanceConcurrency": { + "type": "integer", + "format": "int32", + "description": "The maximum number of concurrent HTTP trigger invocations per instance." + } + } + }, + "FunctionsSiteUpdateStrategy": { + "type": "object", + "description": "Function app site update strategy configuration for deployments and site config updates.", + "properties": { + "type": { + "$ref": "#/definitions/SiteUpdateStrategyType", + "description": "Function app site update strategy type. Available options: Recreate, RollingUpdate" + } + } + }, + "GeoRegion": { + "type": "object", + "description": "Geographical region.", + "properties": { + "properties": { + "$ref": "#/definitions/GeoRegionProperties", + "description": "GeoRegion resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "GeoRegionCollection": { + "type": "object", + "description": "Collection of geographical regions.", + "properties": { + "value": { + "type": "array", + "description": "The GeoRegion items on this page", + "items": { + "$ref": "#/definitions/GeoRegion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "GeoRegionProperties": { + "type": "object", + "description": "GeoRegion resource specific properties", + "properties": { + "description": { + "type": "string", + "description": "Region description.", + "readOnly": true + }, + "displayName": { + "type": "string", + "description": "Display name for region.", + "readOnly": true + }, + "orgDomain": { + "type": "string", + "description": "Display name for region.", + "readOnly": true + } + } + }, + "GitHub": { + "type": "object", + "description": "The configuration settings of the GitHub provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the GitHub provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/ClientRegistration", + "description": "The configuration settings of the app registration for the GitHub provider." + }, + "login": { + "$ref": "#/definitions/LoginScopes", + "description": "The configuration settings of the login flow." + } + } + }, + "GitHubActionCodeConfiguration": { + "type": "object", + "description": "The GitHub action code configuration.", + "properties": { + "runtimeStack": { + "type": "string", + "description": "Runtime stack is used to determine the workflow file content for code base apps." + }, + "runtimeVersion": { + "type": "string", + "description": "Runtime version is used to determine what build version to set in the workflow file." + } + } + }, + "GitHubActionConfiguration": { + "type": "object", + "description": "The GitHub action configuration.", + "properties": { + "codeConfiguration": { + "$ref": "#/definitions/GitHubActionCodeConfiguration", + "description": "GitHub Action code configuration." + }, + "containerConfiguration": { + "$ref": "#/definitions/GitHubActionContainerConfiguration", + "description": "GitHub Action container configuration." + }, + "isLinux": { + "type": "boolean", + "description": "This will help determine the workflow configuration to select." + }, + "generateWorkflowFile": { + "type": "boolean", + "description": "Workflow option to determine whether the workflow file should be generated and written to the repository." + } + } + }, + "GitHubActionContainerConfiguration": { + "type": "object", + "description": "The GitHub action container configuration.", + "properties": { + "serverUrl": { + "type": "string", + "description": "The server URL for the container registry where the build will be hosted." + }, + "imageName": { + "type": "string", + "description": "The image name for the build." + }, + "username": { + "type": "string", + "description": "The username used to upload the image to the container registry." + }, + "password": { + "type": "string", + "format": "password", + "description": "The password used to upload the image to the container registry.", + "x-ms-secret": true + } + } + }, + "GitHubActionWebAppStackSettings": { + "type": "object", + "description": "GitHub Actions Web App stack settings.", + "properties": { + "isSupported": { + "type": "boolean", + "description": "true if GitHub Actions is supported for the stack; otherwise, false.", + "readOnly": true + }, + "supportedVersion": { + "type": "string", + "description": "The minor version that is supported for GitHub Actions.", + "readOnly": true + } + } + }, + "GlobalCsmSkuDescription": { + "type": "object", + "description": "A Global SKU Description.", + "properties": { + "name": { + "type": "string", + "description": "Name of the resource SKU." + }, + "tier": { + "type": "string", + "description": "Service Tier of the resource SKU." + }, + "size": { + "type": "string", + "description": "Size specifier of the resource SKU." + }, + "family": { + "type": "string", + "description": "Family code of the resource SKU." + }, + "capacity": { + "$ref": "#/definitions/SkuCapacity", + "description": "Min, max, and default scale values of the SKU." + }, + "locations": { + "type": "array", + "description": "Locations of the SKU.", + "items": { + "type": "string" + } + }, + "capabilities": { + "type": "array", + "description": "Capabilities of the SKU, e.g., is traffic manager enabled?", + "items": { + "$ref": "#/definitions/Capability" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "GlobalValidation": { + "type": "object", + "description": "The configuration settings that determines the validation flow of users using App Service Authentication/Authorization.", + "properties": { + "requireAuthentication": { + "type": "boolean", + "description": "true if the authentication flow is required any request is made; otherwise, false." + }, + "unauthenticatedClientAction": { + "$ref": "#/definitions/UnauthenticatedClientActionV2", + "description": "The action to take when an unauthenticated client attempts to access the app." + }, + "redirectToProvider": { + "type": "string", + "description": "The default authentication provider to use when multiple providers are configured.\nThis setting is only needed if multiple providers are configured and the unauthenticated client\naction is set to \"RedirectToLoginPage\"." + }, + "excludedPaths": { + "type": "array", + "description": "The paths for which unauthenticated flow would not be redirected to the login page.", + "items": { + "type": "string" + } + } + } + }, + "Google": { + "type": "object", + "description": "The configuration settings of the Google provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the Google provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/ClientRegistration", + "description": "The configuration settings of the app registration for the Google provider." + }, + "login": { + "$ref": "#/definitions/LoginScopes", + "description": "The configuration settings of the login flow." + }, + "validation": { + "$ref": "#/definitions/AllowedAudiencesValidation", + "description": "The configuration settings of the Azure Active Directory token validation flow." + } + } + }, + "HandlerMapping": { + "type": "object", + "description": "The IIS handler mappings used to define which handler processes HTTP requests with certain extension.\nFor example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.", + "properties": { + "extension": { + "type": "string", + "description": "Requests with this extension will be handled using the specified FastCGI application." + }, + "scriptProcessor": { + "type": "string", + "description": "The absolute path to the FastCGI application." + }, + "arguments": { + "type": "string", + "description": "Command-line arguments to be passed to the script processor." + } + } + }, + "HostKeys": { + "type": "object", + "description": "Functions host level keys.", + "properties": { + "masterKey": { + "type": "string", + "description": "Secret key." + }, + "functionKeys": { + "type": "object", + "description": "Host level function keys.", + "additionalProperties": { + "type": "string" + } + }, + "systemKeys": { + "type": "object", + "description": "System keys.", + "additionalProperties": { + "type": "string" + } + } + } + }, + "HostNameBinding": { + "type": "object", + "description": "A hostname binding object.", + "properties": { + "properties": { + "$ref": "#/definitions/HostNameBindingProperties", + "description": "HostNameBinding resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "HostNameBindingCollection": { + "type": "object", + "description": "Collection of hostname bindings.", + "properties": { + "value": { + "type": "array", + "description": "The HostNameBinding items on this page", + "items": { + "$ref": "#/definitions/HostNameBinding" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "HostNameBindingProperties": { + "type": "object", + "description": "HostNameBinding resource specific properties", + "properties": { + "siteName": { + "type": "string", + "description": "App Service app name.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "domainId": { + "type": "string", + "description": "Fully qualified ARM domain resource URI.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "azureResourceName": { + "type": "string", + "description": "Azure resource name.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "azureResourceType": { + "$ref": "#/definitions/AzureResourceType", + "description": "Azure resource type.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "customHostNameDnsRecordType": { + "$ref": "#/definitions/CustomHostNameDnsRecordType", + "description": "Custom DNS record type.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "hostNameType": { + "$ref": "#/definitions/HostNameType", + "description": "Hostname type.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "sslState": { + "$ref": "#/definitions/SslState", + "description": "SSL type", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "thumbprint": { + "type": "string", + "description": "SSL certificate thumbprint", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "virtualIP": { + "type": "string", + "description": "Virtual IP address assigned to the hostname if IP based SSL is enabled.", + "readOnly": true + } + } + }, + "HostNameSslState": { + "type": "object", + "description": "SSL-enabled hostname.", + "properties": { + "name": { + "type": "string", + "description": "Hostname." + }, + "sslState": { + "$ref": "#/definitions/SslState", + "description": "SSL type." + }, + "virtualIP": { + "type": "string", + "description": "Virtual IP address assigned to the hostname if IP based SSL is enabled." + }, + "thumbprint": { + "type": "string", + "description": "SSL certificate thumbprint." + }, + "toUpdate": { + "type": "boolean", + "description": "Set to true to update existing hostname." + }, + "hostType": { + "$ref": "#/definitions/HostType", + "description": "Indicates whether the hostname is a standard or repository hostname." + } + } + }, + "HostNameType": { + "type": "string", + "description": "Hostname type.", + "enum": [ + "Verified", + "Managed" + ], + "x-ms-enum": { + "name": "HostNameType", + "modelAsString": false + } + }, + "HostType": { + "type": "string", + "description": "Indicates whether the hostname is a standard or repository hostname.", + "enum": [ + "Standard", + "Repository" + ], + "x-ms-enum": { + "name": "HostType", + "modelAsString": false + } + }, + "HostingEnvironmentDeploymentInfo": { + "type": "object", + "description": "Information needed to create resources on an App Service Environment.", + "properties": { + "name": { + "type": "string", + "description": "Name of the App Service Environment." + }, + "location": { + "type": "string", + "description": "Location of the App Service Environment." + } + } + }, + "HostingEnvironmentDiagnostics": { + "type": "object", + "description": "Diagnostics for an App Service Environment.", + "properties": { + "name": { + "type": "string", + "description": "Name/identifier of the diagnostics." + }, + "diagnosticsOutput": { + "type": "string", + "description": "Diagnostics output." + } + } + }, + "HostingEnvironmentProfile": { + "type": "object", + "description": "Specification for an App Service Environment to use for this resource.", + "properties": { + "id": { + "type": "string", + "description": "Resource ID of the App Service Environment." + }, + "name": { + "type": "string", + "description": "Name of the App Service Environment.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type of the App Service Environment.", + "readOnly": true + } + } + }, + "HostingEnvironmentStatus": { + "type": "string", + "description": "Current status of the App Service Environment.", + "enum": [ + "Preparing", + "Ready", + "Scaling", + "Deleting" + ], + "x-ms-enum": { + "name": "HostingEnvironmentStatus", + "modelAsString": false + } + }, + "HttpLogsConfig": { + "type": "object", + "description": "Http logs configuration.", + "properties": { + "fileSystem": { + "$ref": "#/definitions/FileSystemHttpLogsConfig", + "description": "Http logs to file system configuration." + }, + "azureBlobStorage": { + "$ref": "#/definitions/AzureBlobStorageHttpLogsConfig", + "description": "Http logs to azure blob storage configuration." + } + } + }, + "HttpSettings": { + "type": "object", + "description": "The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization.", + "properties": { + "requireHttps": { + "type": "boolean", + "description": "false if the authentication/authorization responses not having the HTTPS scheme are permissible; otherwise, true." + }, + "routes": { + "$ref": "#/definitions/HttpSettingsRoutes", + "description": "The configuration settings of the paths HTTP requests." + }, + "forwardProxy": { + "$ref": "#/definitions/ForwardProxy", + "description": "The configuration settings of a forward proxy used to make the requests." + } + } + }, + "HttpSettingsRoutes": { + "type": "object", + "description": "The configuration settings of the paths HTTP requests.", + "properties": { + "apiPrefix": { + "type": "string", + "description": "The prefix that should precede all the authentication/authorization paths." + } + } + }, + "HybridConnection": { + "type": "object", + "description": "Hybrid Connection contract. This is used to configure a Hybrid Connection.", + "properties": { + "properties": { + "$ref": "#/definitions/HybridConnectionProperties", + "description": "HybridConnection resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "HybridConnectionCollection": { + "type": "object", + "description": "Collection of hostname bindings.", + "properties": { + "value": { + "type": "array", + "description": "The HybridConnection items on this page", + "items": { + "$ref": "#/definitions/HybridConnection" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "HybridConnectionKey": { + "type": "object", + "description": "Hybrid Connection key contract. This has the send key name and value for a Hybrid Connection.", + "properties": { + "properties": { + "$ref": "#/definitions/HybridConnectionKeyProperties", + "description": "HybridConnectionKey resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "HybridConnectionKeyProperties": { + "type": "object", + "description": "HybridConnectionKey resource specific properties", + "properties": { + "sendKeyName": { + "type": "string", + "description": "The name of the send key.", + "readOnly": true + }, + "sendKeyValue": { + "type": "string", + "description": "The value of the send key.", + "readOnly": true + } + } + }, + "HybridConnectionLimits": { + "type": "object", + "description": "Hybrid Connection limits contract. This is used to return the plan limits of Hybrid Connections.", + "properties": { + "properties": { + "$ref": "#/definitions/HybridConnectionLimitsProperties", + "description": "HybridConnectionLimits resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "HybridConnectionLimitsProperties": { + "type": "object", + "description": "HybridConnectionLimits resource specific properties", + "properties": { + "current": { + "type": "integer", + "format": "int32", + "description": "The current number of Hybrid Connections.", + "readOnly": true + }, + "maximum": { + "type": "integer", + "format": "int32", + "description": "The maximum number of Hybrid Connections allowed.", + "readOnly": true + } + } + }, + "HybridConnectionProperties": { + "type": "object", + "description": "HybridConnection resource specific properties", + "properties": { + "serviceBusNamespace": { + "type": "string", + "description": "The name of the Service Bus namespace.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "relayName": { + "type": "string", + "description": "The name of the Service Bus relay.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "relayArmUri": { + "type": "string", + "description": "The ARM URI to the Service Bus relay." + }, + "hostname": { + "type": "string", + "description": "The hostname of the endpoint." + }, + "port": { + "type": "integer", + "format": "int32", + "description": "The port of the endpoint." + }, + "sendKeyName": { + "type": "string", + "description": "The name of the Service Bus key which has Send permissions. This is used to authenticate to Service Bus." + }, + "sendKeyValue": { + "type": "string", + "description": "The value of the Service Bus key. This is used to authenticate to Service Bus. In ARM this key will not be returned\nnormally, use the POST /listKeys API instead." + }, + "serviceBusSuffix": { + "type": "string", + "description": "The suffix for the service bus endpoint. By default this is .servicebus.windows.net" + } + } + }, + "IPMode": { + "type": "string", + "description": "Specifies the IP mode of the app.", + "enum": [ + "IPv4", + "IPv6", + "IPv4AndIPv6" + ], + "x-ms-enum": { + "name": "IPMode", + "modelAsString": false + } + }, + "Identifier": { + "type": "object", + "description": "A domain specific resource identifier.", + "properties": { + "properties": { + "$ref": "#/definitions/IdentifierProperties", + "description": "Identifier resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "IdentifierCollection": { + "type": "object", + "description": "Collection of identifiers.", + "properties": { + "value": { + "type": "array", + "description": "The Identifier items on this page", + "items": { + "$ref": "#/definitions/Identifier" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "IdentifierProperties": { + "type": "object", + "description": "Identifier resource specific properties", + "properties": { + "id": { + "type": "string", + "description": "String representation of the identity.", + "x-ms-client-name": "value" + } + } + }, + "IdentityProviders": { + "type": "object", + "description": "The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization.", + "properties": { + "azureActiveDirectory": { + "$ref": "#/definitions/AzureActiveDirectory", + "description": "The configuration settings of the Azure Active directory provider." + }, + "facebook": { + "$ref": "#/definitions/Facebook", + "description": "The configuration settings of the Facebook provider." + }, + "gitHub": { + "$ref": "#/definitions/GitHub", + "description": "The configuration settings of the GitHub provider." + }, + "google": { + "$ref": "#/definitions/Google", + "description": "The configuration settings of the Google provider." + }, + "legacyMicrosoftAccount": { + "$ref": "#/definitions/LegacyMicrosoftAccount", + "description": "The configuration settings of the legacy Microsoft Account provider." + }, + "twitter": { + "$ref": "#/definitions/Twitter", + "description": "The configuration settings of the Twitter provider." + }, + "apple": { + "$ref": "#/definitions/Apple", + "description": "The configuration settings of the Apple provider." + }, + "azureStaticWebApps": { + "$ref": "#/definitions/AzureStaticWebApps", + "description": "The configuration settings of the Azure Static Web Apps provider." + }, + "customOpenIdConnectProviders": { + "type": "object", + "description": "The map of the name of the alias of each custom Open ID Connect provider to the\nconfiguration settings of the custom Open ID Connect provider.", + "additionalProperties": { + "$ref": "#/definitions/CustomOpenIdConnectProvider" + } + } + } + }, + "InAvailabilityReasonType": { + "type": "string", + "description": "Invalid indicates the name provided does not match Azure App Service naming requirements. AlreadyExists indicates that the name is already in use and is therefore unavailable.", + "enum": [ + "Invalid", + "AlreadyExists" + ], + "x-ms-enum": { + "name": "InAvailabilityReasonType", + "modelAsString": true, + "values": [ + { + "name": "Invalid", + "value": "Invalid" + }, + { + "name": "AlreadyExists", + "value": "AlreadyExists" + } + ] + } + }, + "InboundEnvironmentEndpoint": { + "type": "object", + "description": "The IP Addresses and Ports that require inbound network access to and within the subnet of the App Service Environment.", + "properties": { + "description": { + "type": "string", + "description": "Short text describing the purpose of the network traffic." + }, + "endpoints": { + "type": "array", + "description": "The IP addresses that network traffic will originate from in cidr notation.", + "items": { + "type": "string" + } + }, + "ports": { + "type": "array", + "description": "The ports that network traffic will arrive to the App Service Environment at.", + "items": { + "type": "string" + } + } + } + }, + "InboundEnvironmentEndpointCollection": { + "type": "object", + "description": "Collection of Inbound Environment Endpoints", + "properties": { + "value": { + "type": "array", + "description": "The InboundEnvironmentEndpoint items on this page", + "items": { + "$ref": "#/definitions/InboundEnvironmentEndpoint" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "InsightStatus": { + "type": "string", + "description": "Level of the most severe insight generated by the detector.", + "enum": [ + "Critical", + "Warning", + "Info", + "Success", + "None" + ], + "x-ms-enum": { + "name": "InsightStatus", + "modelAsString": false + } + }, + "InstallScript": { + "type": "object", + "description": "Server farm install script configuration.", + "properties": { + "name": { + "type": "string", + "description": "Name of the install script." + }, + "source": { + "$ref": "#/definitions/InstallScriptSource", + "description": "Source of the install script." + } + } + }, + "InstallScriptSource": { + "type": "object", + "description": "Object to hold install script reference.", + "properties": { + "sourceUri": { + "type": "string", + "description": "Install script source URI where the install script file will be fetched from." + }, + "type": { + "$ref": "#/definitions/InstallScriptType", + "description": "Type of the install script." + } + } + }, + "InstallScriptType": { + "type": "string", + "description": "Type of the install script.", + "enum": [ + "RemoteAzureBlob", + "PlatformStorage" + ], + "x-ms-enum": { + "name": "InstallScriptType", + "modelAsString": true, + "values": [ + { + "name": "RemoteAzureBlob", + "value": "RemoteAzureBlob" + }, + { + "name": "PlatformStorage", + "value": "PlatformStorage" + } + ] + } + }, + "IpAddress": { + "type": "object", + "description": "The ip address.", + "properties": { + "address": { + "type": "string", + "description": "The address." + } + } + }, + "IpAddressRange": { + "type": "object", + "description": "The ip address range.", + "properties": { + "addressRange": { + "type": "string", + "description": "The IP address range." + } + } + }, + "IpFilterTag": { + "type": "string", + "description": "Defines what this IP filter will be used for. This is to support IP filtering on proxies.", + "enum": [ + "Default", + "XffProxy", + "ServiceTag" + ], + "x-ms-enum": { + "name": "IpFilterTag", + "modelAsString": true, + "values": [ + { + "name": "Default", + "value": "Default" + }, + { + "name": "XffProxy", + "value": "XffProxy" + }, + { + "name": "ServiceTag", + "value": "ServiceTag" + } + ] + } + }, + "IpSecurityRestriction": { + "type": "object", + "description": "IP security restriction on an app.", + "properties": { + "ipAddress": { + "type": "string", + "description": "IP address the security restriction is valid for.\nIt can be in form of pure ipv4 address (required SubnetMask property) or\nCIDR notation such as ipv4/mask (leading bit match). For CIDR,\nSubnetMask property must not be specified." + }, + "subnetMask": { + "type": "string", + "description": "Subnet mask for the range of IP addresses the restriction is valid for." + }, + "vnetSubnetResourceId": { + "type": "string", + "description": "Virtual network resource id" + }, + "vnetTrafficTag": { + "type": "integer", + "format": "int32", + "description": "(internal) Vnet traffic tag" + }, + "subnetTrafficTag": { + "type": "integer", + "format": "int32", + "description": "(internal) Subnet traffic tag" + }, + "action": { + "type": "string", + "description": "Allow or Deny access for this IP range." + }, + "tag": { + "$ref": "#/definitions/IpFilterTag", + "description": "Defines what this IP filter will be used for. This is to support IP filtering on proxies." + }, + "priority": { + "type": "integer", + "format": "int32", + "description": "Priority of IP restriction rule." + }, + "name": { + "type": "string", + "description": "IP restriction rule name." + }, + "description": { + "type": "string", + "description": "IP restriction rule description." + }, + "headers": { + "type": "object", + "description": "IP restriction rule headers.\nX-Forwarded-Host (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Host#Examples).\nThe matching logic is ..\n- If the property is null or empty (default), all hosts(or lack of) are allowed.\n- A value is compared using ordinal-ignore-case (excluding port number).\n- Subdomain wildcards are permitted but don't match the root domain. For example, *.contoso.com matches the subdomain foo.contoso.com\nbut not the root domain contoso.com or multi-level foo.bar.contoso.com\n- Unicode host names are allowed but are converted to Punycode for matching.\n\nX-Forwarded-For (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For#Examples).\nThe matching logic is ..\n- If the property is null or empty (default), any forwarded-for chains (or lack of) are allowed.\n- If any address (excluding port number) in the chain (comma separated) matches the CIDR defined by the property.\n\nX-Azure-FDID and X-FD-HealthProbe.\nThe matching logic is exact match.", + "additionalProperties": { + "items": { + "type": "string" + }, + "type": "array" + } + } + } + }, + "IssueType": { + "type": "string", + "description": "Represents the type of the Detector", + "enum": [ + "ServiceIncident", + "AppDeployment", + "AppCrash", + "RuntimeIssueDetected", + "AseDeployment", + "UserIssue", + "PlatformIssue", + "Other" + ], + "x-ms-enum": { + "name": "IssueType", + "modelAsString": false + } + }, + "JsonSchema": { + "type": "object", + "description": "The JSON schema.", + "properties": { + "title": { + "type": "string", + "description": "The JSON title." + }, + "content": { + "type": "string", + "description": "The JSON content." + } + } + }, + "JwtClaimChecks": { + "type": "object", + "description": "The configuration settings of the checks that should be made while validating the JWT Claims.", + "properties": { + "allowedGroups": { + "type": "array", + "description": "The list of the allowed groups.", + "items": { + "type": "string" + } + }, + "allowedClientApplications": { + "type": "array", + "description": "The list of the allowed client applications.", + "items": { + "type": "string" + } + } + } + }, + "KeyInfo": { + "type": "object", + "description": "Function key info.", + "properties": { + "name": { + "type": "string", + "description": "Key name" + }, + "value": { + "type": "string", + "description": "Key value" + } + } + }, + "KeyType": { + "type": "string", + "description": "The key type.", + "enum": [ + "NotSpecified", + "Primary", + "Secondary" + ], + "x-ms-enum": { + "name": "KeyType", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "Primary", + "value": "Primary" + }, + { + "name": "Secondary", + "value": "Secondary" + } + ] + } + }, + "KeyValuePairStringObject": { + "type": "object", + "properties": { + "key": { + "type": "string", + "readOnly": true + }, + "value": { + "description": "Any object", + "readOnly": true + } + } + }, + "KeyVaultReferenceWithStatus": { + "type": "object", + "description": "Object to hold key vault reference and the resolution status", + "properties": { + "secretUri": { + "type": "string", + "description": "Key vault secret URI." + }, + "referenceStatus": { + "type": "string", + "description": "Reference status of the key vault secret." + } + } + }, + "KeyVaultSecretStatus": { + "type": "string", + "description": "Status of the Key Vault secret.", + "enum": [ + "Initialized", + "WaitingOnCertificateOrder", + "Succeeded", + "CertificateOrderFailed", + "OperationNotPermittedOnKeyVault", + "AzureServiceUnauthorizedToAccessKeyVault", + "KeyVaultDoesNotExist", + "KeyVaultSecretDoesNotExist", + "UnknownError", + "ExternalPrivateKey", + "Unknown" + ], + "x-ms-enum": { + "name": "KeyVaultSecretStatus", + "modelAsString": false + } + }, + "Kind": { + "type": "string", + "description": "The workflow kind.", + "enum": [ + "Stateful", + "Stateless" + ], + "x-ms-enum": { + "name": "Kind", + "modelAsString": true, + "values": [ + { + "name": "Stateful", + "value": "Stateful" + }, + { + "name": "Stateless", + "value": "Stateless" + } + ] + } + }, + "KubeEnvironment": { + "type": "object", + "description": "A Kubernetes cluster specialized for web workloads by Azure App Service", + "properties": { + "properties": { + "$ref": "#/definitions/KubeEnvironmentProperties", + "description": "KubeEnvironment resource specific properties", + "x-ms-client-flatten": true + }, + "extendedLocation": { + "$ref": "#/definitions/ExtendedLocation", + "description": "Extended Location." + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "KubeEnvironmentCollection": { + "type": "object", + "description": "Collection of Kubernetes Environments", + "properties": { + "value": { + "type": "array", + "description": "The KubeEnvironment items on this page", + "items": { + "$ref": "#/definitions/KubeEnvironment" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "KubeEnvironmentPatchResource": { + "type": "object", + "description": "ARM resource for a KubeEnvironment when patching", + "properties": { + "properties": { + "$ref": "#/definitions/KubeEnvironmentPatchResourceProperties", + "description": "KubeEnvironmentPatchResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "KubeEnvironmentPatchResourceProperties": { + "type": "object", + "description": "KubeEnvironmentPatchResource resource specific properties", + "properties": { + "provisioningState": { + "$ref": "#/definitions/KubeEnvironmentProvisioningState", + "description": "Provisioning state of the Kubernetes Environment.", + "readOnly": true + }, + "deploymentErrors": { + "type": "string", + "description": "Any errors that occurred during deployment or deployment validation", + "readOnly": true + }, + "internalLoadBalancerEnabled": { + "type": "boolean", + "description": "Only visible within Vnet/Subnet", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "defaultDomain": { + "type": "string", + "description": "Default Domain Name for the cluster", + "readOnly": true + }, + "staticIp": { + "type": "string", + "description": "Static IP of the KubeEnvironment", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "arcConfiguration": { + "$ref": "#/definitions/ArcConfiguration", + "description": "Cluster configuration which determines the ARC cluster\ncomponents types. Eg: Choosing between BuildService kind,\nFrontEnd Service ArtifactsStorageType etc." + }, + "appLogsConfiguration": { + "$ref": "#/definitions/AppLogsConfiguration", + "description": "Cluster configuration which enables the log daemon to export\napp logs to a destination. Currently only \"log-analytics\" is\nsupported" + }, + "containerAppsConfiguration": { + "$ref": "#/definitions/ContainerAppsConfiguration", + "description": "Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration" + }, + "aksResourceID": { + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + } + } + }, + "KubeEnvironmentProfile": { + "type": "object", + "description": "Specification for a Kubernetes Environment to use for this resource.", + "properties": { + "id": { + "type": "string", + "description": "Resource ID of the Kubernetes Environment." + }, + "name": { + "type": "string", + "description": "Name of the Kubernetes Environment.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type of the Kubernetes Environment.", + "readOnly": true + } + } + }, + "KubeEnvironmentProperties": { + "type": "object", + "description": "KubeEnvironment resource specific properties", + "properties": { + "provisioningState": { + "$ref": "#/definitions/KubeEnvironmentProvisioningState", + "description": "Provisioning state of the Kubernetes Environment.", + "readOnly": true + }, + "deploymentErrors": { + "type": "string", + "description": "Any errors that occurred during deployment or deployment validation", + "readOnly": true + }, + "internalLoadBalancerEnabled": { + "type": "boolean", + "description": "Only visible within Vnet/Subnet", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "defaultDomain": { + "type": "string", + "description": "Default Domain Name for the cluster", + "readOnly": true + }, + "staticIp": { + "type": "string", + "description": "Static IP of the KubeEnvironment", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "environmentType": { + "type": "string", + "description": "Type of Kubernetes Environment. Only supported for Container App Environments with value as Managed", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "arcConfiguration": { + "$ref": "#/definitions/ArcConfiguration", + "description": "Cluster configuration which determines the ARC cluster\ncomponents types. Eg: Choosing between BuildService kind,\nFrontEnd Service ArtifactsStorageType etc." + }, + "appLogsConfiguration": { + "$ref": "#/definitions/AppLogsConfiguration", + "description": "Cluster configuration which enables the log daemon to export\napp logs to a destination. Currently only \"log-analytics\" is\nsupported" + }, + "containerAppsConfiguration": { + "$ref": "#/definitions/ContainerAppsConfiguration", + "description": "Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration" + }, + "aksResourceID": { + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ] + } + } + }, + "KubeEnvironmentProvisioningState": { + "type": "string", + "description": "Provisioning state of the Kubernetes Environment.", + "enum": [ + "Succeeded", + "Failed", + "Canceled", + "Waiting", + "InitializationInProgress", + "InfrastructureSetupInProgress", + "InfrastructureSetupComplete", + "ScheduledForDelete", + "UpgradeRequested", + "UpgradeFailed" + ], + "x-ms-enum": { + "name": "KubeEnvironmentProvisioningState", + "modelAsString": false + } + }, + "LastKnownGoodProperties": { + "type": "object", + "description": "Properties of the Last Known Good revision for a site.", + "properties": { + "siteName": { + "type": "string", + "description": "Name of the primary site." + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Time when the LKG revision was created.", + "readOnly": true + } + } + }, + "LastKnownGoodResource": { + "type": "object", + "description": "Represents the Last Known Good (LKG) revision status for a site.", + "properties": { + "properties": { + "$ref": "#/definitions/LastKnownGoodProperties", + "description": "LastKnownGood resource specific properties" + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "LegacyMicrosoftAccount": { + "type": "object", + "description": "The configuration settings of the legacy Microsoft Account provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the legacy Microsoft Account provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/ClientRegistration", + "description": "The configuration settings of the app registration for the legacy Microsoft Account provider." + }, + "login": { + "$ref": "#/definitions/LoginScopes", + "description": "The configuration settings of the login flow." + }, + "validation": { + "$ref": "#/definitions/AllowedAudiencesValidation", + "description": "The configuration settings of the legacy Microsoft Account provider token validation flow." + } + } + }, + "LinuxJavaContainerSettings": { + "type": "object", + "description": "Linux Java Container settings.", + "properties": { + "java11Runtime": { + "type": "string", + "description": "Java 11 version (runtime only).", + "readOnly": true + }, + "java8Runtime": { + "type": "string", + "description": "Java 8 version (runtime only).", + "readOnly": true + }, + "isPreview": { + "type": "boolean", + "description": "true if the stack is in preview; otherwise, false.", + "readOnly": true + }, + "isDeprecated": { + "type": "boolean", + "description": "true if the stack is deprecated; otherwise, false.", + "readOnly": true + }, + "isHidden": { + "type": "boolean", + "description": "true if the stack should be hidden; otherwise, false.", + "readOnly": true + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "End-of-life date for the minor version.", + "readOnly": true + }, + "isAutoUpdate": { + "type": "boolean", + "description": "true if the stack version is auto-updated; otherwise, false.", + "readOnly": true + }, + "isEarlyAccess": { + "type": "boolean", + "description": "true if the minor version is early-access; otherwise, false.", + "readOnly": true + } + } + }, + "LoadBalancingMode": { + "type": "string", + "description": "Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.", + "enum": [ + "None", + "Web", + "Publishing", + "Web, Publishing" + ], + "x-ms-enum": { + "name": "LoadBalancingMode", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "Web", + "value": "Web" + }, + { + "name": "Publishing", + "value": "Publishing" + }, + { + "name": "Web, Publishing", + "value": "Web, Publishing" + } + ] + } + }, + "LocalizableString": { + "type": "object", + "description": "Localizable string object containing the name and a localized value.", + "properties": { + "value": { + "type": "string", + "description": "Non-localized name." + }, + "localizedValue": { + "type": "string", + "description": "Localized name." + } + } + }, + "LogAnalyticsConfiguration": { + "type": "object", + "properties": { + "customerId": { + "type": "string" + }, + "sharedKey": { + "type": "string", + "format": "password", + "x-ms-mutability": [ + "update", + "create" + ], + "x-ms-secret": true + } + } + }, + "LogLevel": { + "type": "string", + "description": "Log level.", + "enum": [ + "Off", + "Verbose", + "Information", + "Warning", + "Error" + ], + "x-ms-enum": { + "name": "LogLevel", + "modelAsString": false + } + }, + "LogSpecification": { + "type": "object", + "description": "Log Definition of a single resource metric.", + "properties": { + "name": { + "type": "string" + }, + "displayName": { + "type": "string" + }, + "blobDuration": { + "type": "string" + }, + "logFilterPattern": { + "type": "string" + } + } + }, + "Login": { + "type": "object", + "description": "The configuration settings of the login flow of users using App Service Authentication/Authorization.", + "properties": { + "routes": { + "$ref": "#/definitions/LoginRoutes", + "description": "The routes that specify the endpoints used for login and logout requests." + }, + "tokenStore": { + "$ref": "#/definitions/TokenStore", + "description": "The configuration settings of the token store." + }, + "preserveUrlFragmentsForLogins": { + "type": "boolean", + "description": "true if the fragments from the request are preserved after the login request is made; otherwise, false." + }, + "allowedExternalRedirectUrls": { + "type": "array", + "description": "External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored.\nThis is an advanced setting typically only needed by Windows Store application backends.\nNote that URLs within the current domain are always implicitly allowed.", + "items": { + "type": "string" + } + }, + "cookieExpiration": { + "$ref": "#/definitions/CookieExpiration", + "description": "The configuration settings of the session cookie's expiration." + }, + "nonce": { + "$ref": "#/definitions/Nonce", + "description": "The configuration settings of the nonce used in the login flow." + } + } + }, + "LoginRoutes": { + "type": "object", + "description": "The routes that specify the endpoints used for login and logout requests.", + "properties": { + "logoutEndpoint": { + "type": "string", + "description": "The endpoint at which a logout request should be made." + } + } + }, + "LoginScopes": { + "type": "object", + "description": "The configuration settings of the login flow, including the scopes that should be requested.", + "properties": { + "scopes": { + "type": "array", + "description": "A list of the scopes that should be requested while authenticating.", + "items": { + "type": "string" + } + } + } + }, + "MSDeploy": { + "type": "object", + "description": "MSDeploy ARM PUT information", + "properties": { + "properties": { + "$ref": "#/definitions/MSDeployProperties", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "MSDeployCore": { + "type": "object", + "description": "MSDeploy ARM PUT core information", + "properties": { + "packageUri": { + "type": "string", + "description": "Package URI" + }, + "connectionString": { + "type": "string", + "description": "SQL Connection String" + }, + "dbType": { + "type": "string", + "description": "Database Type" + }, + "setParametersXmlFileUri": { + "type": "string", + "description": "URI of MSDeploy Parameters file. Must not be set if SetParameters is used." + }, + "setParameters": { + "type": "object", + "description": "MSDeploy Parameters. Must not be set if SetParametersXmlFileUri is used.", + "additionalProperties": { + "type": "string" + } + }, + "skipAppData": { + "type": "boolean", + "description": "Controls whether the MSDeploy operation skips the App_Data directory.\nIf set to true, the existing App_Data directory on the destination\nwill not be deleted, and any App_Data directory in the source will be ignored.\nSetting is false by default." + }, + "appOffline": { + "type": "boolean", + "description": "Sets the AppOffline rule while the MSDeploy operation executes.\nSetting is false by default." + } + } + }, + "MSDeployLog": { + "type": "object", + "description": "MSDeploy log", + "properties": { + "properties": { + "$ref": "#/definitions/MSDeployLogProperties", + "description": "MSDeployLog resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "MSDeployLogEntry": { + "type": "object", + "description": "MSDeploy log entry", + "properties": { + "time": { + "type": "string", + "format": "date-time", + "description": "Timestamp of log entry", + "readOnly": true + }, + "type": { + "$ref": "#/definitions/MSDeployLogEntryType", + "description": "Log entry type", + "readOnly": true + }, + "message": { + "type": "string", + "description": "Log entry message", + "readOnly": true + } + } + }, + "MSDeployLogEntryType": { + "type": "string", + "description": "Log entry type", + "enum": [ + "Message", + "Warning", + "Error" + ], + "x-ms-enum": { + "name": "MSDeployLogEntryType", + "modelAsString": false + } + }, + "MSDeployLogProperties": { + "type": "object", + "description": "MSDeployLog resource specific properties", + "properties": { + "entries": { + "type": "array", + "description": "List of log entry messages", + "items": { + "$ref": "#/definitions/MSDeployLogEntry" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "MSDeployProperties": { + "type": "object", + "description": "MSDeploy ARM PUT information properties", + "properties": { + "addOnPackages": { + "type": "array", + "description": "List of Add-On packages. Add-On packages implicitly enable the Do Not Delete MSDeploy rule.", + "items": { + "$ref": "#/definitions/MSDeployCore" + }, + "x-ms-identifiers": [ + "packageUri" + ] + } + }, + "allOf": [ + { + "$ref": "#/definitions/MSDeployCore" + } + ] + }, + "MSDeployProvisioningState": { + "type": "string", + "description": "Provisioning state", + "enum": [ + "accepted", + "running", + "succeeded", + "failed", + "canceled" + ], + "x-ms-enum": { + "name": "MSDeployProvisioningState", + "modelAsString": false + } + }, + "MSDeployStatus": { + "type": "object", + "description": "MSDeploy ARM response", + "properties": { + "properties": { + "$ref": "#/definitions/MSDeployStatusProperties", + "description": "MSDeployStatus resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "MSDeployStatusProperties": { + "type": "object", + "description": "MSDeployStatus resource specific properties", + "properties": { + "deployer": { + "type": "string", + "description": "Username of deployer", + "readOnly": true + }, + "provisioningState": { + "$ref": "#/definitions/MSDeployProvisioningState", + "description": "Provisioning state", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of deploy operation", + "readOnly": true + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of deploy operation", + "readOnly": true + }, + "complete": { + "type": "boolean", + "description": "Whether the deployment operation has completed", + "readOnly": true + } + } + }, + "ManagedPipelineMode": { + "type": "string", + "description": "Managed pipeline mode.", + "enum": [ + "Integrated", + "Classic" + ], + "x-ms-enum": { + "name": "ManagedPipelineMode", + "modelAsString": false + } + }, + "ManagedServiceIdentity": { + "type": "object", + "description": "Managed service identity.", + "properties": { + "type": { + "$ref": "#/definitions/ManagedServiceIdentityType", + "description": "Type of managed service identity." + }, + "tenantId": { + "type": "string", + "description": "Tenant of managed service identity.", + "readOnly": true + }, + "principalId": { + "type": "string", + "description": "Principal Id of managed service identity.", + "readOnly": true + }, + "userAssignedIdentities": { + "type": "object", + "description": "The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}", + "additionalProperties": { + "$ref": "#/definitions/UserAssignedIdentity" + } + } + } + }, + "ManagedServiceIdentityType": { + "type": "string", + "description": "Type of managed service identity.", + "enum": [ + "SystemAssigned", + "UserAssigned", + "SystemAssigned, UserAssigned", + "None" + ], + "x-ms-enum": { + "name": "ManagedServiceIdentityType", + "modelAsString": false + } + }, + "ManagedTrafficConfigProperties": { + "type": "object", + "description": "Properties of a managed traffic configuration resource.", + "properties": { + "trafficMode": { + "$ref": "#/definitions/SiloFailOverMode", + "description": "Traffic routing mode: Active (weighted) or Passive (priority-based failover)." + }, + "endpoints": { + "type": "array", + "description": "Per-region endpoint configurations controlling weight and priority.", + "items": { + "$ref": "#/definitions/EndpointTrafficConfig" + }, + "x-ms-identifiers": [] + }, + "provisioningState": { + "$ref": "#/definitions/SiloProvisioningState", + "description": "Provisioning state of the managed traffic configuration.", + "readOnly": true + } + } + }, + "ManagedTrafficConfigResource": { + "type": "object", + "description": "Managed traffic configuration for a site, controlling how traffic is routed across silos.", + "properties": { + "properties": { + "$ref": "#/definitions/ManagedTrafficConfigProperties", + "description": "ManagedTrafficConfig resource specific properties" + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "MetricAvailability": { + "type": "object", + "description": "Retention policy of a resource metric.", + "properties": { + "timeGrain": { + "type": "string" + }, + "blobDuration": { + "type": "string" + } + } + }, + "MetricSpecification": { + "type": "object", + "description": "Definition of a single resource metric.", + "properties": { + "name": { + "type": "string" + }, + "displayName": { + "type": "string" + }, + "displayDescription": { + "type": "string" + }, + "unit": { + "type": "string" + }, + "aggregationType": { + "type": "string" + }, + "supportsInstanceLevelAggregation": { + "type": "boolean" + }, + "enableRegionalMdmAccount": { + "type": "boolean" + }, + "sourceMdmAccount": { + "type": "string" + }, + "sourceMdmNamespace": { + "type": "string" + }, + "metricFilterPattern": { + "type": "string" + }, + "fillGapWithZero": { + "type": "boolean" + }, + "isInternal": { + "type": "boolean" + }, + "dimensions": { + "type": "array", + "items": { + "$ref": "#/definitions/Dimension" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "category": { + "type": "string" + }, + "availabilities": { + "type": "array", + "items": { + "$ref": "#/definitions/MetricAvailability" + }, + "x-ms-identifiers": [] + }, + "supportedTimeGrainTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "supportedAggregationTypes": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "MigrateMySqlRequest": { + "type": "object", + "description": "MySQL migration request.", + "properties": { + "properties": { + "$ref": "#/definitions/MigrateMySqlRequestProperties", + "description": "MigrateMySqlRequest resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "MigrateMySqlRequestProperties": { + "type": "object", + "description": "MigrateMySqlRequest resource specific properties", + "properties": { + "connectionString": { + "type": "string", + "description": "Connection string to the remote MySQL database." + }, + "migrationType": { + "$ref": "#/definitions/MySqlMigrationType", + "description": "The type of migration operation to be done" + } + }, + "required": [ + "connectionString", + "migrationType" + ] + }, + "MigrateMySqlStatus": { + "type": "object", + "description": "MySQL migration status.", + "properties": { + "properties": { + "$ref": "#/definitions/MigrateMySqlStatusProperties", + "description": "MigrateMySqlStatus resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "MigrateMySqlStatusProperties": { + "type": "object", + "description": "MigrateMySqlStatus resource specific properties", + "properties": { + "migrationOperationStatus": { + "$ref": "#/definitions/OperationStatus", + "description": "Status of the migration task.", + "readOnly": true + }, + "operationId": { + "type": "string", + "description": "Operation ID for the migration task.", + "readOnly": true + }, + "localMySqlEnabled": { + "type": "boolean", + "description": "True if the web app has in app MySql enabled", + "readOnly": true + } + } + }, + "MySqlMigrationType": { + "type": "string", + "description": "The type of migration operation to be done", + "enum": [ + "LocalToRemote", + "RemoteToLocal" + ], + "x-ms-enum": { + "name": "MySqlMigrationType", + "modelAsString": false + } + }, + "NameIdentifier": { + "type": "object", + "description": "Identifies an object.", + "properties": { + "name": { + "type": "string", + "description": "Name of the object." + } + } + }, + "NameValuePair": { + "type": "object", + "description": "Name value pair.", + "properties": { + "name": { + "type": "string", + "description": "Pair name." + }, + "value": { + "type": "string", + "description": "Pair value." + } + } + }, + "NetworkFeatures": { + "type": "object", + "description": "Full view of network features for an app (presently VNET integration and Hybrid Connections).", + "properties": { + "properties": { + "$ref": "#/definitions/NetworkFeaturesProperties", + "description": "NetworkFeatures resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "NetworkFeaturesProperties": { + "type": "object", + "description": "NetworkFeatures resource specific properties", + "properties": { + "virtualNetworkName": { + "type": "string", + "description": "The Virtual Network name.", + "readOnly": true + }, + "virtualNetworkConnection": { + "$ref": "#/definitions/VnetInfo", + "description": "The Virtual Network summary view.", + "readOnly": true + }, + "hybridConnections": { + "type": "array", + "description": "The Hybrid Connections summary view.", + "items": { + "$ref": "#/definitions/RelayServiceConnectionEntity" + }, + "readOnly": true + }, + "hybridConnectionsV2": { + "type": "array", + "description": "The Hybrid Connection V2 (Service Bus) view.", + "items": { + "$ref": "#/definitions/HybridConnection" + }, + "readOnly": true + } + } + }, + "NetworkTrace": { + "type": "object", + "description": "Network trace", + "properties": { + "path": { + "type": "string", + "description": "Local file path for the captured network trace file." + }, + "status": { + "type": "string", + "description": "Current status of the network trace operation, same as Operation.Status (InProgress/Succeeded/Failed)." + }, + "message": { + "type": "string", + "description": "Detailed message of a network trace operation, e.g. error message in case of failure." + } + } + }, + "Nonce": { + "type": "object", + "description": "The configuration settings of the nonce used in the login flow.", + "properties": { + "validateNonce": { + "type": "boolean", + "description": "false if the nonce should not be validated while completing the login flow; otherwise, true." + }, + "nonceExpirationInterval": { + "type": "string", + "description": "The time after the request is made when the nonce should expire." + } + } + }, + "NotificationLevel": { + "type": "string", + "description": "Level indicating how critical this recommendation can impact.", + "enum": [ + "Critical", + "Warning", + "Information", + "NonUrgentSuggestion" + ], + "x-ms-enum": { + "name": "NotificationLevel", + "modelAsString": false + } + }, + "OpenAuthenticationAccessPolicies": { + "type": "object", + "description": "AuthenticationPolicy of type Open.", + "properties": { + "policies": { + "type": "object", + "description": "Open authentication policies.", + "additionalProperties": { + "$ref": "#/definitions/OpenAuthenticationAccessPolicy" + } + } + } + }, + "OpenAuthenticationAccessPolicy": { + "type": "object", + "description": "Open authentication access policy defined by user.", + "properties": { + "type": { + "$ref": "#/definitions/OpenAuthenticationProviderType", + "description": "Type of provider for OAuth." + }, + "claims": { + "type": "array", + "description": "The access policy claims.", + "items": { + "$ref": "#/definitions/OpenAuthenticationPolicyClaim" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "OpenAuthenticationPolicyClaim": { + "type": "object", + "description": "Open authentication policy claim.", + "properties": { + "name": { + "type": "string", + "description": "The name of the claim." + }, + "value": { + "type": "string", + "description": "The value of the claim." + } + } + }, + "OpenAuthenticationProviderType": { + "type": "string", + "description": "Open authentication policy provider type.", + "enum": [ + "AAD" + ], + "x-ms-enum": { + "name": "OpenAuthenticationProviderType", + "modelAsString": true, + "values": [ + { + "name": "AAD", + "value": "AAD" + } + ] + } + }, + "OpenIdConnectClientCredential": { + "type": "object", + "description": "The authentication client credentials of the custom Open ID Connect provider.", + "properties": { + "method": { + "type": "string", + "description": "The method that should be used to authenticate the user.", + "enum": [ + "ClientSecretPost" + ], + "x-ms-enum": { + "modelAsString": false + } + }, + "clientSecretSettingName": { + "type": "string", + "description": "The app setting that contains the client secret for the custom Open ID Connect provider." + } + } + }, + "OpenIdConnectConfig": { + "type": "object", + "description": "The configuration settings of the endpoints used for the custom Open ID Connect provider.", + "properties": { + "authorizationEndpoint": { + "type": "string", + "description": "The endpoint to be used to make an authorization request." + }, + "tokenEndpoint": { + "type": "string", + "description": "The endpoint to be used to request a token." + }, + "issuer": { + "type": "string", + "description": "The endpoint that issues the token." + }, + "certificationUri": { + "type": "string", + "description": "The endpoint that provides the keys necessary to validate the token." + }, + "wellKnownOpenIdConfiguration": { + "type": "string", + "description": "The endpoint that contains all the configuration endpoints for the provider." + } + } + }, + "OpenIdConnectLogin": { + "type": "object", + "description": "The configuration settings of the login flow of the custom Open ID Connect provider.", + "properties": { + "nameClaimType": { + "type": "string", + "description": "The name of the claim that contains the users name." + }, + "scopes": { + "type": "array", + "description": "A list of the scopes that should be requested while authenticating.", + "items": { + "type": "string" + } + } + } + }, + "OpenIdConnectRegistration": { + "type": "object", + "description": "The configuration settings of the app registration for the custom Open ID Connect provider.", + "properties": { + "clientId": { + "type": "string", + "description": "The client id of the custom Open ID Connect provider." + }, + "clientCredential": { + "$ref": "#/definitions/OpenIdConnectClientCredential", + "description": "The authentication credentials of the custom Open ID Connect provider." + }, + "openIdConnectConfiguration": { + "$ref": "#/definitions/OpenIdConnectConfig", + "description": "The configuration settings of the endpoints used for the custom Open ID Connect provider." + } + } + }, + "Operation": { + "type": "object", + "description": "An operation on a resource.", + "properties": { + "id": { + "type": "string", + "description": "Operation ID." + }, + "name": { + "type": "string", + "description": "Operation name." + }, + "status": { + "$ref": "#/definitions/OperationStatus", + "description": "The current status of the operation." + }, + "errors": { + "type": "array", + "description": "Any errors associate with the operation.", + "items": { + "$ref": "#/definitions/ErrorEntity" + }, + "x-ms-identifiers": [] + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Time when operation has started." + }, + "modifiedTime": { + "type": "string", + "format": "date-time", + "description": "Time when operation has been updated." + }, + "expirationTime": { + "type": "string", + "format": "date-time", + "description": "Time when operation will expire." + }, + "geoMasterOperationId": { + "type": "string", + "format": "uuid", + "description": "Applicable only for stamp operation ids." + } + } + }, + "OperationResult": { + "type": "object", + "description": "The operation result definition.", + "properties": { + "trackingId": { + "type": "string", + "description": "Gets the tracking id.", + "readOnly": true + }, + "inputs": { + "description": "Gets the inputs.", + "readOnly": true + }, + "inputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to inputs.", + "readOnly": true + }, + "outputs": { + "description": "Gets the outputs.", + "readOnly": true + }, + "outputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to outputs.", + "readOnly": true + }, + "trackedProperties": { + "description": "Gets the tracked properties.", + "readOnly": true + }, + "retryHistory": { + "type": "array", + "description": "Gets the retry histories.", + "items": { + "$ref": "#/definitions/RetryHistory" + }, + "x-ms-identifiers": [] + }, + "iterationCount": { + "type": "integer", + "format": "int32" + } + }, + "allOf": [ + { + "$ref": "#/definitions/OperationResultProperties" + } + ] + }, + "OperationResultProperties": { + "type": "object", + "description": "The run operation result properties.", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "The start time of the workflow scope repetition." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "The end time of the workflow scope repetition." + }, + "correlation": { + "$ref": "#/definitions/RunActionCorrelation", + "description": "The correlation properties." + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "The status of the workflow scope repetition." + }, + "code": { + "type": "string", + "description": "The workflow scope repetition code." + }, + "error": { + "description": "Anything" + } + } + }, + "OperationStatus": { + "type": "string", + "description": "The current status of the operation.", + "enum": [ + "InProgress", + "Failed", + "Succeeded", + "TimedOut", + "Created" + ], + "x-ms-enum": { + "name": "OperationStatus", + "modelAsString": false + } + }, + "OutboundEnvironmentEndpoint": { + "type": "object", + "description": "Endpoints accessed for a common purpose that the App Service Environment requires outbound network access to.", + "properties": { + "category": { + "type": "string", + "description": "The type of service accessed by the App Service Environment, e.g., Azure Storage, Azure SQL Database, and Azure Active Directory." + }, + "endpoints": { + "type": "array", + "description": "The endpoints that the App Service Environment reaches the service at.", + "items": { + "$ref": "#/definitions/EndpointDependency" + }, + "x-ms-identifiers": [ + "domainName" + ] + } + } + }, + "OutboundEnvironmentEndpointCollection": { + "type": "object", + "description": "Paged collection of OutboundEnvironmentEndpoint items", + "properties": { + "value": { + "type": "array", + "description": "The OutboundEnvironmentEndpoint items on this page", + "items": { + "$ref": "#/definitions/OutboundEnvironmentEndpoint" + }, + "x-ms-identifiers": [ + "category" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "OutboundVnetRouting": { + "type": "object", + "description": "Outbound traffic options over virtual network.", + "properties": { + "allTraffic": { + "type": "boolean", + "description": "Enables all other routing options defined in OutboundVnetRouting if this setting is set to true." + }, + "applicationTraffic": { + "type": "boolean", + "description": "This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied. Previously called VnetRouteAllEnabled." + }, + "contentShareTraffic": { + "type": "boolean", + "description": "Enables accessing content over virtual network. Previously called VnetContentShareEnabled" + }, + "imagePullTraffic": { + "type": "boolean", + "description": "Enables pulling image over Virtual Network. Previously called VnetImagePullEnabled." + }, + "backupRestoreTraffic": { + "type": "boolean", + "description": "Enables Backup and Restore operations over virtual network. Previously called VnetBackupRestoreEnabled" + }, + "managedIdentityTraffic": { + "type": "boolean", + "description": "Enables Managed Identity operations over virtual network." + } + } + }, + "ParameterType": { + "type": "string", + "description": "The parameter type.", + "enum": [ + "NotSpecified", + "String", + "SecureString", + "Int", + "Float", + "Bool", + "Array", + "Object", + "SecureObject" + ], + "x-ms-enum": { + "name": "ParameterType", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "String", + "value": "String" + }, + { + "name": "SecureString", + "value": "SecureString" + }, + { + "name": "Int", + "value": "Int" + }, + { + "name": "Float", + "value": "Float" + }, + { + "name": "Bool", + "value": "Bool" + }, + { + "name": "Array", + "value": "Array" + }, + { + "name": "Object", + "value": "Object" + }, + { + "name": "SecureObject", + "value": "SecureObject" + } + ] + } + }, + "PerfMonCounterCollection": { + "type": "object", + "description": "Collection of performance monitor counters.", + "properties": { + "value": { + "type": "array", + "description": "The PerfMonResponse items on this page", + "items": { + "$ref": "#/definitions/PerfMonResponse" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "PerfMonResponse": { + "type": "object", + "description": "Performance monitor API response.", + "properties": { + "code": { + "type": "string", + "description": "The response code." + }, + "message": { + "type": "string", + "description": "The message." + }, + "data": { + "$ref": "#/definitions/PerfMonSet", + "description": "The performance monitor counters." + } + } + }, + "PerfMonSample": { + "type": "object", + "description": "Performance monitor sample in a set.", + "properties": { + "time": { + "type": "string", + "format": "date-time", + "description": "Point in time for which counter was measured." + }, + "instanceName": { + "type": "string", + "description": "Name of the server on which the measurement is made." + }, + "value": { + "type": "number", + "format": "double", + "description": "Value of counter at a certain time." + } + } + }, + "PerfMonSet": { + "type": "object", + "description": "Metric information.", + "properties": { + "name": { + "type": "string", + "description": "Unique key name of the counter." + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Start time of the period." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "End time of the period." + }, + "timeGrain": { + "type": "string", + "description": "Presented time grain." + }, + "values": { + "type": "array", + "description": "Collection of workers that are active during this time.", + "items": { + "$ref": "#/definitions/PerfMonSample" + }, + "x-ms-identifiers": [] + } + } + }, + "PremierAddOn": { + "type": "object", + "description": "Premier add-on.", + "properties": { + "properties": { + "$ref": "#/definitions/PremierAddOnProperties", + "description": "PremierAddOn resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "PremierAddOnOffer": { + "type": "object", + "description": "Premier add-on offer.", + "properties": { + "properties": { + "$ref": "#/definitions/PremierAddOnOfferProperties", + "description": "PremierAddOnOffer resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "PremierAddOnOfferCollection": { + "type": "object", + "description": "Collection of premier add-on offers.", + "properties": { + "value": { + "type": "array", + "description": "The PremierAddOnOffer items on this page", + "items": { + "$ref": "#/definitions/PremierAddOnOffer" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "PremierAddOnOfferProperties": { + "type": "object", + "description": "PremierAddOnOffer resource specific properties", + "properties": { + "sku": { + "type": "string", + "description": "Premier add on SKU." + }, + "product": { + "type": "string", + "description": "Premier add on offer Product." + }, + "vendor": { + "type": "string", + "description": "Premier add on offer Vendor." + }, + "promoCodeRequired": { + "type": "boolean", + "description": "true if promotion code is required; otherwise, false." + }, + "quota": { + "type": "integer", + "format": "int32", + "description": "Premier add on offer Quota." + }, + "webHostingPlanRestrictions": { + "$ref": "#/definitions/AppServicePlanRestrictions", + "description": "App Service plans this offer is restricted to." + }, + "privacyPolicyUrl": { + "type": "string", + "description": "Privacy policy URL." + }, + "legalTermsUrl": { + "type": "string", + "description": "Legal terms URL." + }, + "marketplacePublisher": { + "type": "string", + "description": "Marketplace publisher." + }, + "marketplaceOffer": { + "type": "string", + "description": "Marketplace offer." + } + } + }, + "PremierAddOnPatchResource": { + "type": "object", + "description": "ARM resource for a PremierAddOn.", + "properties": { + "properties": { + "$ref": "#/definitions/PremierAddOnPatchResourceProperties", + "description": "PremierAddOnPatchResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "PremierAddOnPatchResourceProperties": { + "type": "object", + "description": "PremierAddOnPatchResource resource specific properties", + "properties": { + "sku": { + "type": "string", + "description": "Premier add on SKU." + }, + "product": { + "type": "string", + "description": "Premier add on Product." + }, + "vendor": { + "type": "string", + "description": "Premier add on Vendor." + }, + "marketplacePublisher": { + "type": "string", + "description": "Premier add on Marketplace publisher." + }, + "marketplaceOffer": { + "type": "string", + "description": "Premier add on Marketplace offer." + } + } + }, + "PremierAddOnProperties": { + "type": "object", + "description": "PremierAddOn resource specific properties", + "properties": { + "sku": { + "type": "string", + "description": "Premier add on SKU." + }, + "product": { + "type": "string", + "description": "Premier add on Product." + }, + "vendor": { + "type": "string", + "description": "Premier add on Vendor." + }, + "marketplacePublisher": { + "type": "string", + "description": "Premier add on Marketplace publisher." + }, + "marketplaceOffer": { + "type": "string", + "description": "Premier add on Marketplace offer." + } + } + }, + "PrivateAccess": { + "type": "object", + "description": "Description of the parameters of Private Access for a Web Site.", + "properties": { + "properties": { + "$ref": "#/definitions/PrivateAccessProperties", + "description": "PrivateAccess resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "PrivateAccessProperties": { + "type": "object", + "description": "PrivateAccess resource specific properties", + "properties": { + "enabled": { + "type": "boolean", + "description": "Whether private access is enabled or not." + }, + "virtualNetworks": { + "type": "array", + "description": "The Virtual Networks (and subnets) allowed to access the site privately.", + "items": { + "$ref": "#/definitions/PrivateAccessVirtualNetwork" + }, + "x-ms-identifiers": [ + "key" + ] + } + } + }, + "PrivateAccessSubnet": { + "type": "object", + "description": "Description of a Virtual Network subnet that is useable for private site access.", + "properties": { + "name": { + "type": "string", + "description": "The name of the subnet." + }, + "key": { + "type": "integer", + "format": "int32", + "description": "The key (ID) of the subnet." + } + } + }, + "PrivateAccessVirtualNetwork": { + "type": "object", + "description": "Description of a Virtual Network that is useable for private site access.", + "properties": { + "name": { + "type": "string", + "description": "The name of the Virtual Network." + }, + "key": { + "type": "integer", + "format": "int32", + "description": "The key (ID) of the Virtual Network." + }, + "resourceId": { + "type": "string", + "description": "The ARM uri of the Virtual Network" + }, + "subnets": { + "type": "array", + "description": "A List of subnets that access is allowed to on this Virtual Network. An empty array (but not null) is interpreted to mean that all subnets are allowed within this Virtual Network.", + "items": { + "$ref": "#/definitions/PrivateAccessSubnet" + }, + "x-ms-identifiers": [ + "key" + ] + } + } + }, + "PrivateEndpointConnectionCollection": { + "type": "object", + "description": "Paged collection of RemotePrivateEndpointConnectionARMResource items", + "properties": { + "value": { + "type": "array", + "description": "The RemotePrivateEndpointConnectionARMResource items on this page", + "items": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "PrivateLinkConnectionApprovalRequest": { + "type": "object", + "description": "A request to approve or reject a private endpoint connection", + "properties": { + "privateLinkServiceConnectionState": { + "$ref": "#/definitions/PrivateLinkConnectionState", + "description": "The state of a private link connection" + } + } + }, + "PrivateLinkConnectionApprovalRequestResource": { + "type": "object", + "description": "Private Endpoint Connection Approval ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/PrivateLinkConnectionApprovalRequest", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "PrivateLinkConnectionState": { + "type": "object", + "description": "The state of a private link connection", + "properties": { + "status": { + "type": "string", + "description": "Status of a private link connection" + }, + "description": { + "type": "string", + "description": "Description of a private link connection" + }, + "actionsRequired": { + "type": "string", + "description": "ActionsRequired for a private link connection" + } + } + }, + "PrivateLinkResource": { + "type": "object", + "description": "A private link resource", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string", + "description": "Name of a private link resource" + }, + "type": { + "type": "string" + }, + "properties": { + "$ref": "#/definitions/PrivateLinkResourceProperties", + "description": "Properties of a private link resource" + } + }, + "required": [ + "id", + "name", + "type", + "properties" + ] + }, + "PrivateLinkResourceProperties": { + "type": "object", + "description": "Properties of a private link resource", + "properties": { + "groupId": { + "type": "string", + "description": "GroupId of a private link resource", + "readOnly": true + }, + "requiredMembers": { + "type": "array", + "description": "RequiredMembers of a private link resource", + "items": { + "type": "string" + }, + "readOnly": true + }, + "requiredZoneNames": { + "type": "array", + "description": "RequiredZoneNames of a private link resource", + "items": { + "type": "string" + }, + "readOnly": true + } + } + }, + "PrivateLinkResourcesWrapper": { + "type": "object", + "description": "Wrapper for a collection of private link resources", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/PrivateLinkResource" + } + } + }, + "required": [ + "value" + ] + }, + "ProcessInfo": { + "type": "object", + "description": "Process Information.", + "properties": { + "properties": { + "$ref": "#/definitions/ProcessInfoProperties", + "description": "ProcessInfo resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ProcessInfoCollection": { + "type": "object", + "description": "Collection of Kudu process information elements.", + "properties": { + "value": { + "type": "array", + "description": "The ProcessInfo items on this page", + "items": { + "$ref": "#/definitions/ProcessInfo" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ProcessInfoProperties": { + "type": "object", + "description": "ProcessInfo resource specific properties", + "properties": { + "identifier": { + "type": "integer", + "format": "int32", + "description": "ARM Identifier for deployment.", + "readOnly": true + }, + "deployment_name": { + "type": "string", + "description": "Deployment name.", + "x-ms-client-name": "deploymentName" + }, + "href": { + "type": "string", + "description": "HRef URI." + }, + "minidump": { + "type": "string", + "description": "Minidump URI." + }, + "is_profile_running": { + "type": "boolean", + "description": "Is profile running?", + "x-ms-client-name": "isProfileRunning" + }, + "is_iis_profile_running": { + "type": "boolean", + "description": "Is the IIS Profile running?", + "x-ms-client-name": "isIisProfileRunning" + }, + "iis_profile_timeout_in_seconds": { + "type": "number", + "format": "double", + "description": "IIS Profile timeout (seconds).", + "x-ms-client-name": "iisProfileTimeoutInSeconds" + }, + "parent": { + "type": "string", + "description": "Parent process." + }, + "children": { + "type": "array", + "description": "Child process list.", + "items": { + "type": "string" + } + }, + "threads": { + "type": "array", + "description": "Thread list.", + "items": { + "$ref": "#/definitions/ProcessThreadInfo" + } + }, + "open_file_handles": { + "type": "array", + "description": "List of open files.", + "items": { + "type": "string" + }, + "x-ms-client-name": "openFileHandles" + }, + "modules": { + "type": "array", + "description": "List of modules.", + "items": { + "$ref": "#/definitions/ProcessModuleInfo" + } + }, + "file_name": { + "type": "string", + "description": "File name of this process.", + "x-ms-client-name": "fileName" + }, + "command_line": { + "type": "string", + "description": "Command line.", + "x-ms-client-name": "commandLine" + }, + "user_name": { + "type": "string", + "description": "User name.", + "x-ms-client-name": "userName" + }, + "handle_count": { + "type": "integer", + "format": "int32", + "description": "Handle count.", + "x-ms-client-name": "handleCount" + }, + "module_count": { + "type": "integer", + "format": "int32", + "description": "Module count.", + "x-ms-client-name": "moduleCount" + }, + "thread_count": { + "type": "integer", + "format": "int32", + "description": "Thread count.", + "x-ms-client-name": "threadCount" + }, + "start_time": { + "type": "string", + "format": "date-time", + "description": "Start time.", + "x-ms-client-name": "startTime" + }, + "total_cpu_time": { + "type": "string", + "description": "Total CPU time.", + "x-ms-client-name": "totalCpuTime" + }, + "user_cpu_time": { + "type": "string", + "description": "User CPU time.", + "x-ms-client-name": "userCpuTime" + }, + "privileged_cpu_time": { + "type": "string", + "description": "Privileged CPU time.", + "x-ms-client-name": "privilegedCpuTime" + }, + "working_set": { + "type": "integer", + "format": "int64", + "description": "Working set.", + "x-ms-client-name": "workingSet" + }, + "peak_working_set": { + "type": "integer", + "format": "int64", + "description": "Peak working set.", + "x-ms-client-name": "peakWorkingSet" + }, + "private_memory": { + "type": "integer", + "format": "int64", + "description": "Private memory size.", + "x-ms-client-name": "privateMemory" + }, + "virtual_memory": { + "type": "integer", + "format": "int64", + "description": "Virtual memory size.", + "x-ms-client-name": "virtualMemory" + }, + "peak_virtual_memory": { + "type": "integer", + "format": "int64", + "description": "Peak virtual memory usage.", + "x-ms-client-name": "peakVirtualMemory" + }, + "paged_system_memory": { + "type": "integer", + "format": "int64", + "description": "Paged system memory.", + "x-ms-client-name": "pagedSystemMemory" + }, + "non_paged_system_memory": { + "type": "integer", + "format": "int64", + "description": "Non-paged system memory.", + "x-ms-client-name": "nonPagedSystemMemory" + }, + "paged_memory": { + "type": "integer", + "format": "int64", + "description": "Paged memory.", + "x-ms-client-name": "pagedMemory" + }, + "peak_paged_memory": { + "type": "integer", + "format": "int64", + "description": "Peak paged memory.", + "x-ms-client-name": "peakPagedMemory" + }, + "time_stamp": { + "type": "string", + "format": "date-time", + "description": "Time stamp.", + "x-ms-client-name": "timeStamp" + }, + "environment_variables": { + "type": "object", + "description": "List of environment variables.", + "additionalProperties": { + "type": "string" + }, + "x-ms-client-name": "environmentVariables" + }, + "is_scm_site": { + "type": "boolean", + "description": "Is this the SCM site?", + "x-ms-client-name": "isScmSite" + }, + "is_webjob": { + "type": "boolean", + "description": "Is this a Web Job?", + "x-ms-client-name": "isWebjob" + }, + "description": { + "type": "string", + "description": "Description of process." + } + } + }, + "ProcessModuleInfo": { + "type": "object", + "description": "Process Module Information.", + "properties": { + "properties": { + "$ref": "#/definitions/ProcessModuleInfoProperties", + "description": "ProcessModuleInfo resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ProcessModuleInfoCollection": { + "type": "object", + "description": "Collection of Kudu thread information elements.", + "properties": { + "value": { + "type": "array", + "description": "The ProcessModuleInfo items on this page", + "items": { + "$ref": "#/definitions/ProcessModuleInfo" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ProcessModuleInfoProperties": { + "type": "object", + "description": "ProcessModuleInfo resource specific properties", + "properties": { + "base_address": { + "type": "string", + "description": "Base address. Used as module identifier in ARM resource URI.", + "x-ms-client-name": "baseAddress" + }, + "file_name": { + "type": "string", + "description": "File name.", + "x-ms-client-name": "fileName" + }, + "href": { + "type": "string", + "description": "HRef URI." + }, + "file_path": { + "type": "string", + "description": "File path.", + "x-ms-client-name": "filePath" + }, + "module_memory_size": { + "type": "integer", + "format": "int32", + "description": "Module memory size.", + "x-ms-client-name": "moduleMemorySize" + }, + "file_version": { + "type": "string", + "description": "File version.", + "x-ms-client-name": "fileVersion" + }, + "file_description": { + "type": "string", + "description": "File description.", + "x-ms-client-name": "fileDescription" + }, + "product": { + "type": "string", + "description": "Product name." + }, + "product_version": { + "type": "string", + "description": "Product version.", + "x-ms-client-name": "productVersion" + }, + "is_debug": { + "type": "boolean", + "description": "Is debug?", + "x-ms-client-name": "isDebug" + }, + "language": { + "type": "string", + "description": "Module language (locale)." + } + } + }, + "ProcessThreadInfo": { + "type": "object", + "description": "Process Thread Information.", + "properties": { + "properties": { + "$ref": "#/definitions/ProcessThreadInfoProperties", + "description": "ProcessThreadInfo resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "ProcessThreadInfoCollection": { + "type": "object", + "description": "Collection of Kudu thread information elements.", + "properties": { + "value": { + "type": "array", + "description": "The ProcessThreadInfo items on this page", + "items": { + "$ref": "#/definitions/ProcessThreadInfo" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ProcessThreadInfoProperties": { + "type": "object", + "description": "ProcessThreadInfo resource specific properties", + "properties": { + "identifier": { + "type": "integer", + "format": "int32", + "description": "Site extension ID.", + "readOnly": true + }, + "href": { + "type": "string", + "description": "HRef URI." + }, + "process": { + "type": "string", + "description": "Process URI." + }, + "start_address": { + "type": "string", + "description": "Start address.", + "x-ms-client-name": "startAddress" + }, + "current_priority": { + "type": "integer", + "format": "int32", + "description": "Current thread priority.", + "x-ms-client-name": "currentPriority" + }, + "priority_level": { + "type": "string", + "description": "Thread priority level.", + "x-ms-client-name": "priorityLevel" + }, + "base_priority": { + "type": "integer", + "format": "int32", + "description": "Base priority.", + "x-ms-client-name": "basePriority" + }, + "start_time": { + "type": "string", + "format": "date-time", + "description": "Start time.", + "x-ms-client-name": "startTime" + }, + "total_processor_time": { + "type": "string", + "description": "Total processor time.", + "x-ms-client-name": "totalProcessorTime" + }, + "user_processor_time": { + "type": "string", + "description": "User processor time.", + "x-ms-client-name": "userProcessorTime" + }, + "state": { + "type": "string", + "description": "Thread state." + }, + "wait_reason": { + "type": "string", + "description": "Wait reason.", + "x-ms-client-name": "waitReason" + } + } + }, + "ProvisioningState": { + "type": "string", + "description": "Provisioning state of the App Service Plan.", + "enum": [ + "Succeeded", + "Failed", + "Canceled", + "InProgress", + "Deleting" + ], + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": false + } + }, + "ProxyOnlyResource": { + "type": "object", + "description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.", + "properties": { + "id": { + "type": "string", + "description": "Resource Id.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Resource Name.", + "readOnly": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + }, + "type": { + "type": "string", + "description": "Resource type.", + "readOnly": true + } + } + }, + "PublicCertificate": { + "type": "object", + "description": "Public certificate object", + "properties": { + "properties": { + "$ref": "#/definitions/PublicCertificateProperties", + "description": "PublicCertificate resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "PublicCertificateCollection": { + "type": "object", + "description": "Collection of public certificates", + "properties": { + "value": { + "type": "array", + "description": "The PublicCertificate items on this page", + "items": { + "$ref": "#/definitions/PublicCertificate" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "PublicCertificateLocation": { + "type": "string", + "description": "Public Certificate Location", + "enum": [ + "CurrentUserMy", + "LocalMachineMy", + "Unknown" + ], + "x-ms-enum": { + "name": "PublicCertificateLocation", + "modelAsString": false + } + }, + "PublicCertificateProperties": { + "type": "object", + "description": "PublicCertificate resource specific properties", + "properties": { + "blob": { + "type": "string", + "format": "byte", + "description": "Public Certificate byte array" + }, + "publicCertificateLocation": { + "$ref": "#/definitions/PublicCertificateLocation", + "description": "Public Certificate Location" + }, + "thumbprint": { + "type": "string", + "description": "Certificate Thumbprint", + "readOnly": true + } + } + }, + "PublishingCredentialsPoliciesCollection": { + "type": "object", + "description": "Publishing Credentials Policies entity collection ARM resource.", + "properties": { + "value": { + "type": "array", + "description": "The CsmPublishingCredentialsPoliciesEntity items on this page", + "items": { + "$ref": "#/definitions/CsmPublishingCredentialsPoliciesEntity" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "PublishingProfileFormat": { + "type": "string", + "description": "Name of the format. Valid values are:\nFileZilla3\nWebDeploy -- default\nFtp", + "enum": [ + "FileZilla3", + "WebDeploy", + "Ftp" + ], + "x-ms-enum": { + "name": "PublishingProfileFormat", + "modelAsString": true, + "values": [ + { + "name": "FileZilla3", + "value": "FileZilla3" + }, + { + "name": "WebDeploy", + "value": "WebDeploy" + }, + { + "name": "Ftp", + "value": "Ftp" + } + ] + } + }, + "PushSettings": { + "type": "object", + "description": "Push settings for the App.", + "properties": { + "properties": { + "$ref": "#/definitions/PushSettingsProperties", + "description": "PushSettings resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "PushSettingsProperties": { + "type": "object", + "description": "PushSettings resource specific properties", + "properties": { + "isPushEnabled": { + "type": "boolean", + "description": "Gets or sets a flag indicating whether the Push endpoint is enabled." + }, + "tagWhitelistJson": { + "type": "string", + "description": "Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint." + }, + "tagsRequiringAuth": { + "type": "string", + "description": "Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint.\nTags can consist of alphanumeric characters and the following:\n'_', '@', '#', '.', ':', '-'. \nValidation should be performed at the PushRequestHandler." + }, + "dynamicTagsJson": { + "type": "string", + "description": "Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint." + } + }, + "required": [ + "isPushEnabled" + ] + }, + "QueryUtterancesResult": { + "type": "object", + "description": "Result for utterances query.", + "properties": { + "sampleUtterance": { + "$ref": "#/definitions/SampleUtterance", + "description": "A sample utterance." + }, + "score": { + "type": "number", + "format": "float", + "description": "Score of a sample utterance." + } + } + }, + "QueryUtterancesResults": { + "type": "object", + "description": "Suggested utterances where the detector can be applicable", + "properties": { + "query": { + "type": "string", + "description": "Search Query." + }, + "results": { + "type": "array", + "description": "Array of utterance results for search query.", + "items": { + "$ref": "#/definitions/QueryUtterancesResult" + }, + "x-ms-identifiers": [] + } + } + }, + "RampUpRule": { + "type": "object", + "description": "Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.", + "properties": { + "actionHostName": { + "type": "string", + "description": "Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net." + }, + "reroutePercentage": { + "type": "number", + "format": "double", + "description": "Percentage of the traffic which will be redirected to ActionHostName." + }, + "changeStep": { + "type": "number", + "format": "double", + "description": "In auto ramp up scenario this is the step to add/remove from ReroutePercentage until it reaches \\nMinReroutePercentage or\nMaxReroutePercentage. Site metrics are checked every N minutes specified in ChangeIntervalInMinutes.\\nCustom decision algorithm\ncan be provided in TiPCallback site extension which URL can be specified in ChangeDecisionCallbackUrl." + }, + "changeIntervalInMinutes": { + "type": "integer", + "format": "int32", + "description": "Specifies interval in minutes to reevaluate ReroutePercentage." + }, + "minReroutePercentage": { + "type": "number", + "format": "double", + "description": "Specifies lower boundary above which ReroutePercentage will stay." + }, + "maxReroutePercentage": { + "type": "number", + "format": "double", + "description": "Specifies upper boundary below which ReroutePercentage will stay." + }, + "changeDecisionCallbackUrl": { + "type": "string", + "description": "Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified." + }, + "name": { + "type": "string", + "description": "Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment." + } + } + }, + "Recommendation": { + "type": "object", + "description": "Represents a recommendation result generated by the recommendation engine.", + "properties": { + "properties": { + "$ref": "#/definitions/RecommendationProperties", + "description": "Recommendation resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "RecommendationCollection": { + "type": "object", + "description": "Collection of recommendations.", + "properties": { + "value": { + "type": "array", + "description": "The Recommendation items on this page", + "items": { + "$ref": "#/definitions/Recommendation" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "RecommendationProperties": { + "type": "object", + "description": "Recommendation resource specific properties", + "properties": { + "creationTime": { + "type": "string", + "format": "date-time", + "description": "Timestamp when this instance was created." + }, + "recommendationId": { + "type": "string", + "format": "uuid", + "description": "A GUID value that each recommendation object is associated with." + }, + "resourceId": { + "type": "string", + "description": "Full ARM resource ID string that this recommendation object is associated with." + }, + "resourceScope": { + "$ref": "#/definitions/ResourceScopeType", + "description": "Name of a resource type this recommendation applies, e.g. Subscription, ServerFarm, Site." + }, + "ruleName": { + "type": "string", + "description": "Unique name of the rule." + }, + "displayName": { + "type": "string", + "description": "UI friendly name of the rule (may not be unique)." + }, + "message": { + "type": "string", + "description": "Recommendation text." + }, + "level": { + "$ref": "#/definitions/NotificationLevel", + "description": "Level indicating how critical this recommendation can impact." + }, + "channels": { + "$ref": "#/definitions/Channels", + "description": "List of channels that this recommendation can apply." + }, + "categoryTags": { + "type": "array", + "description": "The list of category tags that this recommendation belongs to.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "actionName": { + "type": "string", + "description": "Name of action recommended by this object." + }, + "enabled": { + "type": "integer", + "format": "int32", + "description": "True if this recommendation is still valid (i.e. \"actionable\"). False if it is invalid." + }, + "states": { + "type": "array", + "description": "The list of states of this recommendation. If it's null then it should be considered \"Active\".", + "items": { + "type": "string" + } + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "The beginning time in UTC of a range that the recommendation refers to." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "The end time in UTC of a range that the recommendation refers to." + }, + "nextNotificationTime": { + "type": "string", + "format": "date-time", + "description": "When to notify this recommendation next in UTC. Null means that this will never be notified anymore." + }, + "notificationExpirationTime": { + "type": "string", + "format": "date-time", + "description": "Date and time in UTC when this notification expires." + }, + "notifiedTime": { + "type": "string", + "format": "date-time", + "description": "Last timestamp in UTC this instance was actually notified. Null means that this recommendation hasn't been notified yet." + }, + "score": { + "type": "number", + "format": "double", + "description": "A metric value measured by the rule." + }, + "isDynamic": { + "type": "boolean", + "description": "True if this is associated with a dynamically added rule" + }, + "extensionName": { + "type": "string", + "description": "Extension name of the portal if exists." + }, + "bladeName": { + "type": "string", + "description": "Deep link to a blade on the portal." + }, + "forwardLink": { + "type": "string", + "description": "Forward link to an external document associated with the rule." + } + } + }, + "RecommendationRule": { + "type": "object", + "description": "Represents a recommendation rule that the recommendation engine can perform.", + "properties": { + "properties": { + "$ref": "#/definitions/RecommendationRuleProperties", + "description": "RecommendationRule resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "RecommendationRuleProperties": { + "type": "object", + "description": "RecommendationRule resource specific properties", + "properties": { + "recommendationName": { + "type": "string", + "description": "Unique name of the rule." + }, + "displayName": { + "type": "string", + "description": "UI friendly name of the rule." + }, + "message": { + "type": "string", + "description": "Localized name of the rule (Good for UI)." + }, + "recommendationId": { + "type": "string", + "format": "uuid", + "description": "Recommendation ID of an associated recommendation object tied to the rule, if exists.\nIf such an object doesn't exist, it is set to null." + }, + "description": { + "type": "string", + "description": "Localized detailed description of the rule." + }, + "actionName": { + "type": "string", + "description": "Name of action that is recommended by this rule in string." + }, + "level": { + "$ref": "#/definitions/NotificationLevel", + "description": "Level of impact indicating how critical this rule is." + }, + "channels": { + "$ref": "#/definitions/Channels", + "description": "List of available channels that this rule applies." + }, + "categoryTags": { + "type": "array", + "description": "The list of category tags that this recommendation rule belongs to.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "isDynamic": { + "type": "boolean", + "description": "True if this is associated with a dynamically added rule" + }, + "extensionName": { + "type": "string", + "description": "Extension name of the portal if exists. Applicable to dynamic rule only." + }, + "bladeName": { + "type": "string", + "description": "Deep link to a blade on the portal. Applicable to dynamic rule only." + }, + "forwardLink": { + "type": "string", + "description": "Forward link to an external document associated with the rule. Applicable to dynamic rule only." + } + } + }, + "RecurrenceFrequency": { + "type": "string", + "description": "The recurrence frequency.", + "enum": [ + "NotSpecified", + "Second", + "Minute", + "Hour", + "Day", + "Week", + "Month", + "Year" + ], + "x-ms-enum": { + "name": "RecurrenceFrequency", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "Second", + "value": "Second" + }, + { + "name": "Minute", + "value": "Minute" + }, + { + "name": "Hour", + "value": "Hour" + }, + { + "name": "Day", + "value": "Day" + }, + { + "name": "Week", + "value": "Week" + }, + { + "name": "Month", + "value": "Month" + }, + { + "name": "Year", + "value": "Year" + } + ] + } + }, + "RecurrenceSchedule": { + "type": "object", + "description": "The recurrence schedule.", + "properties": { + "minutes": { + "type": "array", + "description": "The minutes.", + "items": { + "type": "integer", + "format": "int32" + } + }, + "hours": { + "type": "array", + "description": "The hours.", + "items": { + "type": "integer", + "format": "int32" + } + }, + "weekDays": { + "type": "array", + "description": "The days of the week.", + "items": { + "$ref": "#/definitions/DaysOfWeek" + } + }, + "monthDays": { + "type": "array", + "description": "The month days.", + "items": { + "type": "integer", + "format": "int32" + } + }, + "monthlyOccurrences": { + "type": "array", + "description": "The monthly occurrences.", + "items": { + "$ref": "#/definitions/RecurrenceScheduleOccurrence" + }, + "x-ms-identifiers": [] + } + } + }, + "RecurrenceScheduleOccurrence": { + "type": "object", + "description": "The recurrence schedule occurrence.", + "properties": { + "day": { + "$ref": "#/definitions/DayOfWeek", + "description": "The day of the week." + }, + "occurrence": { + "type": "integer", + "format": "int32", + "description": "The occurrence." + } + } + }, + "RedundancyMode": { + "type": "string", + "description": "Site redundancy mode", + "enum": [ + "None", + "Manual", + "Failover", + "ActiveActive", + "GeoRedundant" + ], + "x-ms-enum": { + "name": "RedundancyMode", + "modelAsString": false + } + }, + "RegenerateActionParameter": { + "type": "object", + "description": "The access key regenerate action content.", + "properties": { + "keyType": { + "$ref": "#/definitions/KeyType", + "description": "The key type." + } + } + }, + "RegistryAdapter": { + "type": "object", + "description": "Server farm registry adapter configuration.", + "properties": { + "registryKey": { + "type": "string", + "description": "Registry key for the adapter." + }, + "type": { + "$ref": "#/definitions/RegistryAdapterType", + "description": "Type of the registry adapter." + }, + "keyVaultSecretReference": { + "$ref": "#/definitions/KeyVaultReferenceWithStatus", + "description": "Key vault reference to the value that will be placed in the registry location" + } + } + }, + "RegistryAdapterType": { + "type": "string", + "description": "Type of the registry adapter.", + "enum": [ + "Binary", + "String", + "Expand_String", + "Multi_String", + "DWord", + "QWord" + ], + "x-ms-enum": { + "name": "RegistryAdapterType", + "modelAsString": true, + "values": [ + { + "name": "Binary", + "value": "Binary" + }, + { + "name": "String", + "value": "String" + }, + { + "name": "Expand_String", + "value": "Expand_String" + }, + { + "name": "Multi_String", + "value": "Multi_String" + }, + { + "name": "DWord", + "value": "DWord" + }, + { + "name": "QWord", + "value": "QWord" + } + ] + } + }, + "RelayServiceConnectionEntity": { + "type": "object", + "description": "Hybrid Connection for an App Service app.", + "properties": { + "properties": { + "$ref": "#/definitions/RelayServiceConnectionEntityProperties", + "description": "RelayServiceConnectionEntity resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "RelayServiceConnectionEntityProperties": { + "type": "object", + "description": "RelayServiceConnectionEntity resource specific properties", + "properties": { + "entityName": { + "type": "string" + }, + "entityConnectionString": { + "type": "string" + }, + "resourceType": { + "type": "string" + }, + "resourceConnectionString": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "port": { + "type": "integer", + "format": "int32" + }, + "biztalkUri": { + "type": "string" + } + } + }, + "RemotePrivateEndpointConnection": { + "type": "object", + "description": "A remote private endpoint connection", + "properties": { + "properties": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionProperties", + "description": "RemotePrivateEndpointConnection resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "RemotePrivateEndpointConnectionARMResource": { + "type": "object", + "description": "Remote Private Endpoint Connection ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/RemotePrivateEndpointConnectionARMResourceProperties", + "description": "RemotePrivateEndpointConnectionARMResource resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "RemotePrivateEndpointConnectionARMResourceProperties": { + "type": "object", + "description": "RemotePrivateEndpointConnectionARMResource resource specific properties", + "properties": { + "provisioningState": { + "type": "string", + "readOnly": true + }, + "privateEndpoint": { + "$ref": "#/definitions/ArmIdWrapper", + "description": "PrivateEndpoint of a remote private endpoint connection" + }, + "privateLinkServiceConnectionState": { + "$ref": "#/definitions/PrivateLinkConnectionState", + "description": "The state of a private link connection" + }, + "ipAddresses": { + "type": "array", + "description": "Private IPAddresses mapped to the remote private endpoint", + "items": { + "type": "string" + } + } + } + }, + "RemotePrivateEndpointConnectionProperties": { + "type": "object", + "description": "RemotePrivateEndpointConnection resource specific properties", + "properties": { + "provisioningState": { + "type": "string", + "readOnly": true + }, + "privateEndpoint": { + "$ref": "#/definitions/ArmIdWrapper", + "description": "PrivateEndpoint of a remote private endpoint connection" + }, + "privateLinkServiceConnectionState": { + "$ref": "#/definitions/PrivateLinkConnectionState", + "description": "The state of a private link connection" + }, + "ipAddresses": { + "type": "array", + "description": "Private IPAddresses mapped to the remote private endpoint", + "items": { + "type": "string" + } + } + } + }, + "Rendering": { + "type": "object", + "description": "Instructions for rendering the data", + "properties": { + "type": { + "$ref": "#/definitions/RenderingType", + "description": "Rendering Type" + }, + "title": { + "type": "string", + "description": "Title of data" + }, + "description": { + "type": "string", + "description": "Description of the data that will help it be interpreted" + } + } + }, + "RenderingType": { + "type": "string", + "description": "Rendering Type", + "enum": [ + "NoGraph", + "Table", + "TimeSeries", + "TimeSeriesPerInstance", + "PieChart", + "DataSummary", + "Email", + "Insights", + "DynamicInsight", + "Markdown", + "Detector", + "DropDown", + "Card", + "Solution", + "Guage", + "Form", + "ChangeSets", + "ChangeAnalysisOnboarding", + "ChangesView", + "AppInsight", + "DependencyGraph", + "DownTime", + "SummaryCard", + "SearchComponent", + "AppInsightEnablement" + ], + "x-ms-enum": { + "name": "RenderingType", + "modelAsString": false + } + }, + "RepetitionIndex": { + "type": "object", + "description": "The workflow run action repetition index.", + "properties": { + "scopeName": { + "type": "string", + "description": "The scope." + }, + "itemIndex": { + "type": "integer", + "format": "int32", + "description": "The index." + } + }, + "required": [ + "itemIndex" + ] + }, + "Request": { + "type": "object", + "description": "A request.", + "properties": { + "headers": { + "description": "A list of all the headers attached to the request." + }, + "uri": { + "type": "string", + "description": "The destination for the request." + }, + "method": { + "type": "string", + "description": "The HTTP method used for the request." + } + } + }, + "RequestHistory": { + "type": "object", + "description": "The request history.", + "properties": { + "properties": { + "$ref": "#/definitions/RequestHistoryProperties", + "description": "The request history properties." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "RequestHistoryListResult": { + "type": "object", + "description": "The response of a RequestHistory list operation.", + "properties": { + "value": { + "type": "array", + "description": "The RequestHistory items on this page", + "items": { + "$ref": "#/definitions/RequestHistory" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "RequestHistoryProperties": { + "type": "object", + "description": "The request history.", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "The time the request started." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "The time the request ended." + }, + "request": { + "$ref": "#/definitions/Request", + "description": "The request." + }, + "response": { + "$ref": "#/definitions/Response", + "description": "The response." + } + } + }, + "RequestsBasedTrigger": { + "type": "object", + "description": "Trigger based on total requests.", + "properties": { + "count": { + "type": "integer", + "format": "int32", + "description": "Request Count." + }, + "timeInterval": { + "type": "string", + "description": "Time interval." + } + } + }, + "ResolveStatus": { + "type": "string", + "enum": [ + "Initialized", + "Resolved", + "InvalidSyntax", + "MSINotEnabled", + "VaultNotFound", + "SecretNotFound", + "SecretVersionNotFound", + "AccessToKeyVaultDenied", + "OtherReasons", + "FetchTimedOut", + "UnauthorizedClient" + ], + "x-ms-enum": { + "name": "ResolveStatus", + "modelAsString": false + } + }, + "ResourceCollection": { + "type": "object", + "description": "Collection of resources.", + "properties": { + "value": { + "type": "array", + "description": "Collection of resources.", + "items": { + "type": "string" + } + }, + "nextLink": { + "type": "string", + "description": "Link to next page of resources." + } + }, + "required": [ + "value" + ] + }, + "ResourceConfig": { + "type": "object", + "description": "Function app resource requirements.", + "properties": { + "cpu": { + "type": "number", + "format": "double", + "description": "Required CPU in cores, e.g. 0.5" + }, + "memory": { + "type": "string", + "description": "Required memory, e.g. \"1Gi\"" + } + } + }, + "ResourceHealthMetadata": { + "type": "object", + "description": "Used for getting ResourceHealthCheck settings.", + "properties": { + "properties": { + "$ref": "#/definitions/ResourceHealthMetadataProperties", + "description": "ResourceHealthMetadata resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "ResourceHealthMetadataCollection": { + "type": "object", + "description": "Collection of resource health metadata.", + "properties": { + "value": { + "type": "array", + "description": "The ResourceHealthMetadata items on this page", + "items": { + "$ref": "#/definitions/ResourceHealthMetadata" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ResourceHealthMetadataProperties": { + "type": "object", + "description": "ResourceHealthMetadata resource specific properties", + "properties": { + "category": { + "type": "string", + "description": "The category that the resource matches in the RHC Policy File" + }, + "signalAvailability": { + "type": "boolean", + "description": "Is there a health signal for the resource" + } + } + }, + "ResourceMetricAvailability": { + "type": "object", + "description": "Metrics availability and retention.", + "properties": { + "timeGrain": { + "type": "string", + "description": "Time grain .", + "readOnly": true + }, + "retention": { + "type": "string", + "description": "Retention period for the current time grain.", + "readOnly": true + } + } + }, + "ResourceMetricDefinition": { + "type": "object", + "description": "Metadata for the metrics.", + "properties": { + "properties": { + "$ref": "#/definitions/ResourceMetricDefinitionProperties", + "description": "ResourceMetricDefinition resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "ResourceMetricDefinitionCollection": { + "type": "object", + "description": "Collection of metric definitions.", + "properties": { + "value": { + "type": "array", + "description": "The ResourceMetricDefinition items on this page", + "items": { + "$ref": "#/definitions/ResourceMetricDefinition" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ResourceMetricDefinitionProperties": { + "type": "object", + "description": "ResourceMetricDefinition resource specific properties", + "properties": { + "unit": { + "type": "string", + "description": "Unit of the metric.", + "readOnly": true + }, + "primaryAggregationType": { + "type": "string", + "description": "Primary aggregation type.", + "readOnly": true + }, + "metricAvailabilities": { + "type": "array", + "description": "List of time grains supported for the metric together with retention period.", + "items": { + "$ref": "#/definitions/ResourceMetricAvailability" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "resourceUri": { + "type": "string", + "description": "Resource URI.", + "readOnly": true + }, + "properties": { + "type": "object", + "description": "Resource metric definition properties.", + "additionalProperties": { + "type": "string" + }, + "readOnly": true + } + } + }, + "ResourceNameAvailability": { + "type": "object", + "description": "Information regarding availability of a resource name.", + "properties": { + "nameAvailable": { + "type": "boolean", + "description": "true indicates name is valid and available. false indicates the name is invalid, unavailable, or both." + }, + "reason": { + "$ref": "#/definitions/InAvailabilityReasonType", + "description": "Invalid indicates the name provided does not match Azure App Service naming requirements. AlreadyExists indicates that the name is already in use and is therefore unavailable." + }, + "message": { + "type": "string", + "description": "If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that resource name is already in use, and direct them to select a different name." + } + } + }, + "ResourceNameAvailabilityRequest": { + "type": "object", + "description": "Resource name availability request content.", + "properties": { + "name": { + "type": "string", + "description": "Resource name to verify." + }, + "type": { + "$ref": "#/definitions/CheckNameResourceTypes", + "description": "Resource type used for verification." + }, + "isFqdn": { + "type": "boolean", + "description": "Is fully qualified domain name." + }, + "environmentId": { + "type": "string", + "description": "Azure Resource Manager ID of the customer's selected Container Apps Environment on which to host the Function app. This must be of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}" + } + }, + "required": [ + "name", + "type" + ] + }, + "ResourceReference": { + "type": "object", + "description": "The resource reference.", + "properties": { + "id": { + "type": "string", + "description": "The resource id." + }, + "name": { + "type": "string", + "description": "Gets the resource name.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Gets the resource type.", + "readOnly": true + } + } + }, + "ResourceScopeType": { + "type": "string", + "description": "Name of a resource type this recommendation applies, e.g. Subscription, ServerFarm, Site.", + "enum": [ + "ServerFarm", + "Subscription", + "WebSite" + ], + "x-ms-enum": { + "name": "ResourceScopeType", + "modelAsString": true, + "values": [ + { + "name": "ServerFarm", + "value": "ServerFarm" + }, + { + "name": "Subscription", + "value": "Subscription" + }, + { + "name": "WebSite", + "value": "WebSite" + } + ] + } + }, + "Response": { + "type": "object", + "description": "A response.", + "properties": { + "headers": { + "description": "A list of all the headers attached to the response." + }, + "statusCode": { + "type": "integer", + "format": "int32", + "description": "The status code of the response." + }, + "bodyLink": { + "$ref": "#/definitions/ContentLink", + "description": "Details on the location of the body content." + } + } + }, + "ResponseMessageEnvelopeRemotePrivateEndpointConnection": { + "type": "object", + "description": "Message envelope that contains the common Azure resource manager properties and the resource provider specific content.", + "properties": { + "id": { + "type": "string", + "description": "Resource Id. Typically ID is populated only for responses to GET requests. Caller is responsible for passing in this\nvalue for GET requests only.\nFor example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupId}/providers/Microsoft.Web/sites/{sitename}" + }, + "name": { + "type": "string", + "description": "Name of resource." + }, + "type": { + "type": "string", + "description": "Type of resource e.g \"Microsoft.Web/sites\"." + }, + "location": { + "type": "string", + "description": "Geographical region resource belongs to e.g. SouthCentralUS, SouthEastAsia." + }, + "tags": { + "type": "object", + "description": "Tags associated with resource.", + "additionalProperties": { + "type": "string" + } + }, + "plan": { + "$ref": "#/definitions/ArmPlan", + "description": "Azure resource manager plan." + }, + "properties": { + "$ref": "#/definitions/RemotePrivateEndpointConnection", + "description": "Resource specific properties." + }, + "sku": { + "$ref": "#/definitions/SkuDescription", + "description": "SKU description of the resource." + }, + "status": { + "type": "string", + "description": "Azure-AsyncOperation Status info." + }, + "error": { + "$ref": "#/definitions/ErrorEntity", + "description": "Azure-AsyncOperation Error info." + }, + "identity": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "MSI resource" + }, + "zones": { + "type": "array", + "description": "Logical Availability Zones the service is hosted in", + "items": { + "type": "string" + } + } + } + }, + "ResponseMetaData": { + "type": "object", + "properties": { + "dataSource": { + "$ref": "#/definitions/DataSource", + "description": "Source of the Data" + } + } + }, + "RestoreRequest": { + "type": "object", + "description": "Description of a restore request.", + "properties": { + "properties": { + "$ref": "#/definitions/RestoreRequestProperties", + "description": "RestoreRequest resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "RestoreRequestProperties": { + "type": "object", + "description": "RestoreRequest resource specific properties", + "properties": { + "storageAccountUrl": { + "type": "string", + "description": "SAS URL to the container." + }, + "blobName": { + "type": "string", + "description": "Name of a blob which contains the backup." + }, + "overwrite": { + "type": "boolean", + "description": "true if the restore operation can overwrite target app; otherwise, false. true is needed if trying to restore over an existing app." + }, + "siteName": { + "type": "string", + "description": "Name of an app." + }, + "databases": { + "type": "array", + "description": "Collection of databases which should be restored. This list has to match the list of databases included in the backup.", + "items": { + "$ref": "#/definitions/DatabaseBackupSetting" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "ignoreConflictingHostNames": { + "type": "boolean", + "description": "Changes a logic when restoring an app with custom domains. true to remove custom domains automatically. If false, custom domains are added to \\nthe app's object when it is being restored, but that might fail due to conflicts during the operation.", + "default": false + }, + "ignoreDatabases": { + "type": "boolean", + "description": "Ignore the databases and only restore the site content", + "default": false + }, + "appServicePlan": { + "type": "string", + "description": "Specify app service plan that will own restored site." + }, + "operationType": { + "type": "string", + "description": "Operation type.", + "default": "Default", + "enum": [ + "Default", + "Clone", + "Relocation", + "Snapshot", + "CloudFS" + ], + "x-ms-enum": { + "name": "BackupRestoreOperationType", + "modelAsString": false + } + }, + "adjustConnectionStrings": { + "type": "boolean", + "description": "true if SiteConfig.ConnectionStrings should be set in new app; otherwise, false." + }, + "hostingEnvironment": { + "type": "string", + "description": "App Service Environment name, if needed (only when restoring an app to an App Service Environment)." + } + }, + "required": [ + "storageAccountUrl", + "overwrite" + ] + }, + "RetryHistory": { + "type": "object", + "description": "The retry history.", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Gets the start time." + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Gets the end time." + }, + "code": { + "type": "string", + "description": "Gets the status code." + }, + "clientRequestId": { + "type": "string", + "description": "Gets the client request Id." + }, + "serviceRequestId": { + "type": "string", + "description": "Gets the service request Id." + }, + "error": { + "$ref": "#/definitions/ErrorResponse", + "description": "Gets the error response." + } + } + }, + "RouteType": { + "type": "string", + "description": "The type of route this is:\nDEFAULT - By default, every app has routes to the local address ranges specified by RFC1918\nINHERITED - Routes inherited from the real Virtual Network routes\nSTATIC - Static route set on the app only\n\nThese values will be used for syncing an app's routes with those from a Virtual Network.", + "enum": [ + "DEFAULT", + "INHERITED", + "STATIC" + ], + "x-ms-enum": { + "name": "RouteType", + "modelAsString": true, + "values": [ + { + "name": "DEFAULT", + "value": "DEFAULT" + }, + { + "name": "INHERITED", + "value": "INHERITED" + }, + { + "name": "STATIC", + "value": "STATIC" + } + ] + } + }, + "RunActionCorrelation": { + "type": "object", + "description": "The workflow run action correlation properties.", + "properties": { + "actionTrackingId": { + "type": "string", + "description": "The action tracking identifier." + } + }, + "allOf": [ + { + "$ref": "#/definitions/RunCorrelation" + } + ] + }, + "RunCorrelation": { + "type": "object", + "description": "The correlation properties.", + "properties": { + "clientTrackingId": { + "type": "string", + "description": "The client tracking identifier." + }, + "clientKeywords": { + "type": "array", + "description": "The client keywords.", + "items": { + "type": "string" + } + } + } + }, + "RuntimeName": { + "type": "string", + "description": "Function app runtime name. Available options: dotnet-isolated, node, java, powershell, python, custom", + "enum": [ + "dotnet-isolated", + "node", + "java", + "powershell", + "python", + "custom" + ], + "x-ms-enum": { + "name": "RuntimeName", + "modelAsString": true, + "values": [ + { + "name": "dotnet-isolated", + "value": "dotnet-isolated" + }, + { + "name": "node", + "value": "node" + }, + { + "name": "java", + "value": "java" + }, + { + "name": "powershell", + "value": "powershell" + }, + { + "name": "python", + "value": "python" + }, + { + "name": "custom", + "value": "custom" + } + ] + } + }, + "SampleUtterance": { + "type": "object", + "description": "Sample utterance.", + "properties": { + "text": { + "type": "string", + "description": "Text attribute of sample utterance." + }, + "links": { + "type": "array", + "description": "Links attribute of sample utterance.", + "items": { + "type": "string" + } + }, + "qid": { + "type": "string", + "description": "Question id of sample utterance (for stackoverflow questions titles)." + } + } + }, + "ScmType": { + "type": "string", + "description": "SCM type.", + "enum": [ + "None", + "Dropbox", + "Tfs", + "LocalGit", + "GitHub", + "CodePlexGit", + "CodePlexHg", + "BitbucketGit", + "BitbucketHg", + "ExternalGit", + "ExternalHg", + "OneDrive", + "VSO", + "VSTSRM" + ], + "x-ms-enum": { + "name": "ScmType", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None" + }, + { + "name": "Dropbox", + "value": "Dropbox" + }, + { + "name": "Tfs", + "value": "Tfs" + }, + { + "name": "LocalGit", + "value": "LocalGit" + }, + { + "name": "GitHub", + "value": "GitHub" + }, + { + "name": "CodePlexGit", + "value": "CodePlexGit" + }, + { + "name": "CodePlexHg", + "value": "CodePlexHg" + }, + { + "name": "BitbucketGit", + "value": "BitbucketGit" + }, + { + "name": "BitbucketHg", + "value": "BitbucketHg" + }, + { + "name": "ExternalGit", + "value": "ExternalGit" + }, + { + "name": "ExternalHg", + "value": "ExternalHg" + }, + { + "name": "OneDrive", + "value": "OneDrive" + }, + { + "name": "VSO", + "value": "VSO" + }, + { + "name": "VSTSRM", + "value": "VSTSRM" + } + ] + } + }, + "ServerFarmInstance": { + "type": "object", + "description": "Represents details of a single instance in a server farm.", + "properties": { + "instanceName": { + "type": "string", + "description": "The instance name.", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9]+$" + }, + "ipAddress": { + "type": "string", + "description": "The instance IP address." + }, + "status": { + "type": "string", + "description": "The instance status." + } + } + }, + "ServerFarmInstanceDetails": { + "type": "object", + "description": "Represents instance details for an app service plan.", + "properties": { + "serverFarmName": { + "type": "string", + "description": "The server farm name." + }, + "instances": { + "type": "array", + "description": "The list of server farm instances.", + "items": { + "$ref": "#/definitions/ServerFarmInstance" + }, + "x-ms-identifiers": [] + }, + "instanceCount": { + "type": "integer", + "format": "int32", + "description": "The total number of instances." + } + } + }, + "ServerFarmNetworkSettings": { + "type": "object", + "description": "Network settings for an app service plan.", + "properties": { + "virtualNetworkSubnetId": { + "type": "string", + "description": "Azure Resource Manager ID of the Virtual network and subnet to be joined by Regional VNET Integration. This must be of the form /subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}" + } + } + }, + "ServerFarmRdpDetails": { + "type": "object", + "description": "Server Farm RDP connection details.", + "properties": { + "rdpPassword": { + "type": "string", + "format": "password", + "description": "The RDP password for the server farm.", + "x-ms-secret": true + }, + "rdpPasswordExpiry": { + "type": "string", + "format": "date-time", + "description": "The RDP password expiry date." + } + } + }, + "ServerFarmSilo": { + "type": "object", + "description": "Represents a silo of an App Service plan.", + "properties": { + "properties": { + "$ref": "#/definitions/ServerFarmSiloProperties", + "description": "ServerFarmSilo resource specific properties" + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "ServerFarmSiloCollection": { + "type": "object", + "description": "Collection of App Service plan silo resources.", + "properties": { + "value": { + "type": "array", + "description": "The ServerFarmSilo items on this page", + "items": { + "$ref": "#/definitions/ServerFarmSilo" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "ServerFarmSiloProperties": { + "type": "object", + "description": "Properties of an App Service plan silo resource.", + "properties": { + "siloLocation": { + "type": "string", + "description": "ARM location of the App Service plan silo." + }, + "primaryServerFarmName": { + "type": "string", + "description": "Name of the primary App Service plan." + }, + "primaryLocation": { + "type": "string", + "description": "Region of the primary App Service plan." + }, + "instanceNumberOverride": { + "type": "integer", + "format": "int32", + "description": "Instance number override for the silo." + }, + "zoneRedundantOverride": { + "type": "boolean", + "description": "Zone redundancy override for the silo." + }, + "provisioningState": { + "$ref": "#/definitions/SiloProvisioningState", + "description": "Provisioning state of the silo.", + "readOnly": true + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Time when the silo was created.", + "readOnly": true + }, + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "description": "Time when the silo was last modified.", + "readOnly": true + } + }, + "required": [ + "primaryLocation" + ] + }, + "ServiceSpecification": { + "type": "object", + "description": "Resource metrics service provided by Microsoft.Insights resource provider.", + "properties": { + "metricSpecifications": { + "type": "array", + "items": { + "$ref": "#/definitions/MetricSpecification" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "logSpecifications": { + "type": "array", + "items": { + "$ref": "#/definitions/LogSpecification" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "SiloFailOverMode": { + "type": "string", + "description": "Traffic routing mode for silos.", + "enum": [ + "Active", + "Passive", + "Unknown" + ], + "x-ms-enum": { + "name": "SiloFailOverMode", + "modelAsString": true, + "values": [ + { + "name": "Active", + "value": "Active", + "description": "Active mode with weighted traffic routing." + }, + { + "name": "Passive", + "value": "Passive", + "description": "Passive mode with priority-based failover routing." + }, + { + "name": "Unknown", + "value": "Unknown", + "description": "Failover mode is unknown." + } + ] + } + }, + "SiloNetworkingOverride": { + "type": "object", + "description": "Networking override configuration for a site silo.", + "properties": { + "vnetIntegrationOverride": { + "type": "string", + "description": "Virtual network subnet resource ID override for the silo." + } + } + }, + "SiloProvisioningState": { + "type": "string", + "description": "Provisioning state for a silo resource.", + "enum": [ + "InProgress", + "Succeeded", + "Failed", + "Canceled" + ], + "x-ms-enum": { + "name": "SiloProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "InProgress", + "value": "InProgress", + "description": "Provisioning is in progress." + }, + { + "name": "Succeeded", + "value": "Succeeded", + "description": "Provisioning succeeded." + }, + { + "name": "Failed", + "value": "Failed", + "description": "Provisioning failed." + }, + { + "name": "Canceled", + "value": "Canceled", + "description": "Provisioning was canceled." + } + ] + } + }, + "Site": { + "type": "object", + "description": "A web app, a mobile app backend, or an API app.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteProperties", + "description": "Site resource specific properties", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "Managed service identity." + }, + "extendedLocation": { + "$ref": "#/definitions/ExtendedLocation", + "description": "Extended Location." + }, + "kind": { + "type": "string", + "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "SiteAuthSettings": { + "type": "object", + "description": "Configuration settings for the Azure App Service Authentication / Authorization feature.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteAuthSettingsProperties", + "description": "SiteAuthSettings resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SiteAuthSettingsProperties": { + "type": "object", + "description": "SiteAuthSettings resource specific properties", + "properties": { + "enabled": { + "type": "boolean", + "description": "true if the Authentication / Authorization feature is enabled for the current app; otherwise, false." + }, + "runtimeVersion": { + "type": "string", + "description": "The RuntimeVersion of the Authentication / Authorization feature in use for the current app.\nThe setting in this value can control the behavior of certain features in the Authentication / Authorization module." + }, + "unauthenticatedClientAction": { + "$ref": "#/definitions/UnauthenticatedClientAction", + "description": "The action to take when an unauthenticated client attempts to access the app." + }, + "tokenStoreEnabled": { + "type": "boolean", + "description": "true to durably store platform-specific security tokens that are obtained during login flows; otherwise, false.\nThe default is false." + }, + "allowedExternalRedirectUrls": { + "type": "array", + "description": "External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored.\nThis is an advanced setting typically only needed by Windows Store application backends.\nNote that URLs within the current domain are always implicitly allowed.", + "items": { + "type": "string" + } + }, + "defaultProvider": { + "$ref": "#/definitions/BuiltInAuthenticationProvider", + "description": "The default authentication provider to use when multiple providers are configured.\nThis setting is only needed if multiple providers are configured and the unauthenticated client\naction is set to \"RedirectToLoginPage\"." + }, + "tokenRefreshExtensionHours": { + "type": "number", + "format": "double", + "description": "The number of hours after session token expiration that a session token can be used to\ncall the token refresh API. The default is 72 hours." + }, + "clientId": { + "type": "string", + "description": "The Client ID of this relying party application, known as the client_id.\nThis setting is required for enabling OpenID Connection authentication with Azure Active Directory or\nother 3rd party OpenID Connect providers.\nMore information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html" + }, + "clientSecret": { + "type": "string", + "description": "The Client Secret of this relying party application (in Azure Active Directory, this is also referred to as the Key).\nThis setting is optional. If no client secret is configured, the OpenID Connect implicit auth flow is used to authenticate end users.\nOtherwise, the OpenID Connect Authorization Code Flow is used to authenticate end users.\nMore information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html" + }, + "clientSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the client secret of the relying party application." + }, + "clientSecretCertificateThumbprint": { + "type": "string", + "description": "An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as\na replacement for the Client Secret. It is also optional." + }, + "issuer": { + "type": "string", + "description": "The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application.\nWhen using Azure Active Directory, this value is the URI of the directory tenant, e.g. `https://sts.windows.net/{tenant-guid}/`.\nThis URI is a case-sensitive identifier for the token issuer.\nMore information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html" + }, + "validateIssuer": { + "type": "boolean", + "description": "Gets a value indicating whether the issuer should be a valid HTTPS url and be validated as such." + }, + "allowedAudiences": { + "type": "array", + "description": "Allowed audience values to consider when validating JSON Web Tokens issued by\nAzure Active Directory. Note that the ClientID value is always considered an\nallowed audience, regardless of this setting.", + "items": { + "type": "string" + } + }, + "additionalLoginParams": { + "type": "array", + "description": "Login parameters to send to the OpenID Connect authorization endpoint when\na user logs in. Each parameter must be in the form \"key=value\".", + "items": { + "type": "string" + } + }, + "aadClaimsAuthorization": { + "type": "string", + "description": "Gets a JSON string containing the Azure AD Acl settings." + }, + "googleClientId": { + "type": "string", + "description": "The OpenID Connect Client ID for the Google web application.\nThis setting is required for enabling Google Sign-In.\nGoogle Sign-In documentation: https://developers.google.com/identity/sign-in/web/" + }, + "googleClientSecret": { + "type": "string", + "description": "The client secret associated with the Google web application.\nThis setting is required for enabling Google Sign-In.\nGoogle Sign-In documentation: https://developers.google.com/identity/sign-in/web/" + }, + "googleClientSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the client secret associated with\nthe Google web application." + }, + "googleOAuthScopes": { + "type": "array", + "description": "The OAuth 2.0 scopes that will be requested as part of Google Sign-In authentication.\nThis setting is optional. If not specified, \"openid\", \"profile\", and \"email\" are used as default scopes.\nGoogle Sign-In documentation: https://developers.google.com/identity/sign-in/web/", + "items": { + "type": "string" + } + }, + "facebookAppId": { + "type": "string", + "description": "The App ID of the Facebook app used for login.\nThis setting is required for enabling Facebook Login.\nFacebook Login documentation: https://developers.facebook.com/docs/facebook-login" + }, + "facebookAppSecret": { + "type": "string", + "description": "The App Secret of the Facebook app used for Facebook Login.\nThis setting is required for enabling Facebook Login.\nFacebook Login documentation: https://developers.facebook.com/docs/facebook-login" + }, + "facebookAppSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the app secret used for Facebook Login." + }, + "facebookOAuthScopes": { + "type": "array", + "description": "The OAuth 2.0 scopes that will be requested as part of Facebook Login authentication.\nThis setting is optional.\nFacebook Login documentation: https://developers.facebook.com/docs/facebook-login", + "items": { + "type": "string" + } + }, + "gitHubClientId": { + "type": "string", + "description": "The Client Id of the GitHub app used for login.\nThis setting is required for enabling Github login" + }, + "gitHubClientSecret": { + "type": "string", + "description": "The Client Secret of the GitHub app used for Github Login.\nThis setting is required for enabling Github login." + }, + "gitHubClientSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the client secret of the Github\napp used for GitHub Login." + }, + "gitHubOAuthScopes": { + "type": "array", + "description": "The OAuth 2.0 scopes that will be requested as part of GitHub Login authentication.\nThis setting is optional", + "items": { + "type": "string" + } + }, + "twitterConsumerKey": { + "type": "string", + "description": "The OAuth 1.0a consumer key of the Twitter application used for sign-in.\nThis setting is required for enabling Twitter Sign-In.\nTwitter Sign-In documentation: https://dev.twitter.com/web/sign-in" + }, + "twitterConsumerSecret": { + "type": "string", + "description": "The OAuth 1.0a consumer secret of the Twitter application used for sign-in.\nThis setting is required for enabling Twitter Sign-In.\nTwitter Sign-In documentation: https://dev.twitter.com/web/sign-in" + }, + "twitterConsumerSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the OAuth 1.0a consumer secret of the Twitter\napplication used for sign-in." + }, + "microsoftAccountClientId": { + "type": "string", + "description": "The OAuth 2.0 client ID that was created for the app used for authentication.\nThis setting is required for enabling Microsoft Account authentication.\nMicrosoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm" + }, + "microsoftAccountClientSecret": { + "type": "string", + "description": "The OAuth 2.0 client secret that was created for the app used for authentication.\nThis setting is required for enabling Microsoft Account authentication.\nMicrosoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm" + }, + "microsoftAccountClientSecretSettingName": { + "type": "string", + "description": "The app setting name containing the OAuth 2.0 client secret that was created for the\napp used for authentication." + }, + "microsoftAccountOAuthScopes": { + "type": "array", + "description": "The OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.\nThis setting is optional. If not specified, \"wl.basic\" is used as the default scope.\nMicrosoft Account Scopes and permissions documentation: https://msdn.microsoft.com/en-us/library/dn631845.aspx", + "items": { + "type": "string" + } + }, + "isAuthFromFile": { + "type": "string", + "description": "\"true\" if the auth config settings should be read from a file,\n\"false\" otherwise" + }, + "authFilePath": { + "type": "string", + "description": "The path of the config file containing auth settings.\nIf the path is relative, base will the site's root directory." + }, + "configVersion": { + "type": "string", + "description": "The ConfigVersion of the Authentication / Authorization feature in use for the current app.\nThe setting in this value can control the behavior of the control plane for Authentication / Authorization." + } + } + }, + "SiteAuthSettingsV2": { + "type": "object", + "description": "Configuration settings for the Azure App Service Authentication / Authorization V2 feature.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteAuthSettingsV2Properties", + "description": "SiteAuthSettingsV2 resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SiteAuthSettingsV2Properties": { + "type": "object", + "description": "SiteAuthSettingsV2 resource specific properties", + "properties": { + "platform": { + "$ref": "#/definitions/AuthPlatform", + "description": "The configuration settings of the platform of App Service Authentication/Authorization." + }, + "globalValidation": { + "$ref": "#/definitions/GlobalValidation", + "description": "The configuration settings that determines the validation flow of users using App Service Authentication/Authorization." + }, + "identityProviders": { + "$ref": "#/definitions/IdentityProviders", + "description": "The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization." + }, + "login": { + "$ref": "#/definitions/Login", + "description": "The configuration settings of the login flow of users using App Service Authentication/Authorization." + }, + "httpSettings": { + "$ref": "#/definitions/HttpSettings", + "description": "The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization." + } + } + }, + "SiteAvailabilityState": { + "type": "string", + "description": "Management information availability state for the app.", + "enum": [ + "Normal", + "Limited", + "DisasterRecoveryMode" + ], + "x-ms-enum": { + "name": "SiteAvailabilityState", + "modelAsString": false + } + }, + "SiteCloneability": { + "type": "object", + "description": "Represents whether or not an app is cloneable.", + "properties": { + "result": { + "$ref": "#/definitions/CloneAbilityResult", + "description": "Name of app." + }, + "blockingFeatures": { + "type": "array", + "description": "List of features enabled on app that prevent cloning.", + "items": { + "$ref": "#/definitions/SiteCloneabilityCriterion" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "unsupportedFeatures": { + "type": "array", + "description": "List of features enabled on app that are non-blocking but cannot be cloned. The app can still be cloned\nbut the features in this list will not be set up on cloned app.", + "items": { + "$ref": "#/definitions/SiteCloneabilityCriterion" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "blockingCharacteristics": { + "type": "array", + "description": "List of blocking application characteristics.", + "items": { + "$ref": "#/definitions/SiteCloneabilityCriterion" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "SiteCloneabilityCriterion": { + "type": "object", + "description": "An app cloneability criterion.", + "properties": { + "name": { + "type": "string", + "description": "Name of criterion." + }, + "description": { + "type": "string", + "description": "Description of criterion." + } + } + }, + "SiteConfig": { + "type": "object", + "description": "Configuration of an App Service app.", + "properties": { + "numberOfWorkers": { + "type": "integer", + "format": "int32", + "description": "Number of workers." + }, + "defaultDocuments": { + "type": "array", + "description": "Default documents.", + "items": { + "type": "string" + } + }, + "netFrameworkVersion": { + "type": "string", + "description": ".NET Framework version.", + "default": "v4.6" + }, + "phpVersion": { + "type": "string", + "description": "Version of PHP." + }, + "pythonVersion": { + "type": "string", + "description": "Version of Python." + }, + "nodeVersion": { + "type": "string", + "description": "Version of Node.js." + }, + "powerShellVersion": { + "type": "string", + "description": "Version of PowerShell." + }, + "linuxFxVersion": { + "type": "string", + "description": "Linux App Framework and version" + }, + "windowsFxVersion": { + "type": "string", + "description": "Xenon App Framework and version" + }, + "requestTracingEnabled": { + "type": "boolean", + "description": "true if request tracing is enabled; otherwise, false." + }, + "requestTracingExpirationTime": { + "type": "string", + "format": "date-time", + "description": "Request tracing expiration time." + }, + "remoteDebuggingEnabled": { + "type": "boolean", + "description": "true if remote debugging is enabled; otherwise, false." + }, + "remoteDebuggingVersion": { + "type": "string", + "description": "Remote debugging version." + }, + "httpLoggingEnabled": { + "type": "boolean", + "description": "true if HTTP logging is enabled; otherwise, false." + }, + "acrUseManagedIdentityCreds": { + "type": "boolean", + "description": "Flag to use Managed Identity Creds for ACR pull" + }, + "acrUserManagedIdentityID": { + "type": "string", + "description": "If using user managed identity, the user managed identity ClientId" + }, + "logsDirectorySizeLimit": { + "type": "integer", + "format": "int32", + "description": "HTTP logs directory size limit." + }, + "detailedErrorLoggingEnabled": { + "type": "boolean", + "description": "true if detailed error logging is enabled; otherwise, false." + }, + "publishingUsername": { + "type": "string", + "description": "Publishing user name." + }, + "appSettings": { + "type": "array", + "description": "Application settings. This property is not returned in response to normal create and read requests since it may contain sensitive information.", + "items": { + "$ref": "#/definitions/NameValuePair" + }, + "x-ms-identifiers": [ + "name" + ], + "x-ms-mutability": [ + "update", + "create" + ] + }, + "metadata": { + "type": "array", + "description": "Application metadata. This property cannot be retrieved, since it may contain secrets.", + "items": { + "$ref": "#/definitions/NameValuePair" + }, + "x-ms-identifiers": [ + "name" + ], + "x-ms-mutability": [ + "update", + "create" + ] + }, + "connectionStrings": { + "type": "array", + "description": "Connection strings. This property is not returned in response to normal create and read requests since it may contain sensitive information.", + "items": { + "$ref": "#/definitions/ConnStringInfo" + }, + "x-ms-identifiers": [ + "name" + ], + "x-ms-mutability": [ + "update", + "create" + ] + }, + "machineKey": { + "$ref": "#/definitions/SiteMachineKey", + "description": "Site MachineKey.", + "readOnly": true + }, + "handlerMappings": { + "type": "array", + "description": "Handler mappings.", + "items": { + "$ref": "#/definitions/HandlerMapping" + }, + "x-ms-identifiers": [ + "extension" + ] + }, + "documentRoot": { + "type": "string", + "description": "Document root." + }, + "scmType": { + "$ref": "#/definitions/ScmType", + "description": "SCM type." + }, + "use32BitWorkerProcess": { + "type": "boolean", + "description": "true to use 32-bit worker process; otherwise, false." + }, + "webSocketsEnabled": { + "type": "boolean", + "description": "true if WebSocket is enabled; otherwise, false." + }, + "alwaysOn": { + "type": "boolean", + "description": "true if Always On is enabled; otherwise, false." + }, + "javaVersion": { + "type": "string", + "description": "Java version." + }, + "javaContainer": { + "type": "string", + "description": "Java container." + }, + "javaContainerVersion": { + "type": "string", + "description": "Java container version." + }, + "appCommandLine": { + "type": "string", + "description": "App command line to launch." + }, + "managedPipelineMode": { + "$ref": "#/definitions/ManagedPipelineMode", + "description": "Managed pipeline mode." + }, + "virtualApplications": { + "type": "array", + "description": "Virtual applications.", + "items": { + "$ref": "#/definitions/VirtualApplication" + }, + "x-ms-identifiers": [ + "virtualPath" + ] + }, + "loadBalancing": { + "$ref": "#/definitions/SiteLoadBalancing", + "description": "Site load balancing." + }, + "experiments": { + "$ref": "#/definitions/Experiments", + "description": "This is work around for polymorphic types." + }, + "limits": { + "$ref": "#/definitions/SiteLimits", + "description": "Site limits." + }, + "autoHealEnabled": { + "type": "boolean", + "description": "true if Auto Heal is enabled; otherwise, false." + }, + "autoHealRules": { + "$ref": "#/definitions/AutoHealRules", + "description": "Auto Heal rules." + }, + "tracingOptions": { + "type": "string", + "description": "Tracing options." + }, + "vnetName": { + "type": "string", + "description": "Virtual Network name.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "vnetRouteAllEnabled": { + "type": "boolean", + "description": "Virtual Network Route All enabled. This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied." + }, + "vnetPrivatePortsCount": { + "type": "integer", + "format": "int32", + "description": "The number of private ports assigned to this app. These will be assigned dynamically on runtime." + }, + "cors": { + "$ref": "#/definitions/CorsSettings", + "description": "Cross-Origin Resource Sharing (CORS) settings." + }, + "push": { + "$ref": "#/definitions/PushSettings", + "description": "Push endpoint settings." + }, + "apiDefinition": { + "$ref": "#/definitions/ApiDefinitionInfo", + "description": "Information about the formal API definition for the app." + }, + "apiManagementConfig": { + "$ref": "#/definitions/ApiManagementConfig", + "description": "Azure API management settings linked to the app." + }, + "autoSwapSlotName": { + "type": "string", + "description": "Auto-swap slot name." + }, + "localMySqlEnabled": { + "type": "boolean", + "description": "true to enable local MySQL; otherwise, false.", + "default": false + }, + "managedServiceIdentityId": { + "type": "integer", + "format": "int32", + "description": "Managed Service Identity Id" + }, + "xManagedServiceIdentityId": { + "type": "integer", + "format": "int32", + "description": "Explicit Managed Service Identity Id" + }, + "keyVaultReferenceIdentity": { + "type": "string", + "description": "Identity to use for Key Vault Reference authentication." + }, + "ipSecurityRestrictions": { + "type": "array", + "description": "IP security restrictions for main.", + "items": { + "$ref": "#/definitions/IpSecurityRestriction" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "ipSecurityRestrictionsDefaultAction": { + "$ref": "#/definitions/DefaultAction", + "description": "Default action for main access restriction if no rules are matched." + }, + "scmIpSecurityRestrictions": { + "type": "array", + "description": "IP security restrictions for scm.", + "items": { + "$ref": "#/definitions/IpSecurityRestriction" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "scmIpSecurityRestrictionsDefaultAction": { + "$ref": "#/definitions/DefaultAction", + "description": "Default action for scm access restriction if no rules are matched." + }, + "scmIpSecurityRestrictionsUseMain": { + "type": "boolean", + "description": "IP security restrictions for scm to use main." + }, + "http20Enabled": { + "type": "boolean", + "description": "Http20Enabled: configures a web site to allow clients to connect over http2.0", + "default": true + }, + "http20ProxyFlag": { + "type": "integer", + "format": "int32", + "description": "Http20ProxyFlag: Configures a website to allow http2.0 to pass be proxied all the way to the app. 0 = disabled, 1 = pass through all http2 traffic, 2 = pass through gRPC only.", + "default": 0 + }, + "minTlsVersion": { + "$ref": "#/definitions/SupportedTlsVersions", + "description": "MinTlsVersion: configures the minimum version of TLS required for SSL requests" + }, + "minTlsCipherSuite": { + "$ref": "#/definitions/TlsCipherSuites", + "description": "The minimum strength TLS cipher suite allowed for an application" + }, + "scmMinTlsVersion": { + "$ref": "#/definitions/SupportedTlsVersions", + "description": "ScmMinTlsVersion: configures the minimum version of TLS required for SSL requests for SCM site" + }, + "ftpsState": { + "$ref": "#/definitions/FtpsState", + "description": "State of FTP / FTPS service" + }, + "preWarmedInstanceCount": { + "type": "integer", + "format": "int32", + "description": "Number of preWarmed instances.\nThis setting only applies to the Consumption and Elastic Plans", + "minimum": 0, + "maximum": 10 + }, + "functionAppScaleLimit": { + "type": "integer", + "format": "int32", + "description": "Maximum number of workers that a site can scale out to.\nThis setting only applies to the Consumption and Elastic Premium Plans", + "minimum": 0 + }, + "elasticWebAppScaleLimit": { + "type": "integer", + "format": "int32", + "description": "Maximum number of workers that a site can scale out to.\nThis setting only applies to apps in plans where ElasticScaleEnabled is true", + "minimum": 0 + }, + "healthCheckPath": { + "type": "string", + "description": "Health check path" + }, + "functionsRuntimeScaleMonitoringEnabled": { + "type": "boolean", + "description": "Gets or sets a value indicating whether functions runtime scale monitoring is enabled. When enabled,\nthe ScaleController will not monitor event sources directly, but will instead call to the\nruntime to get scale status." + }, + "websiteTimeZone": { + "type": "string", + "description": "Sets the time zone a site uses for generating timestamps. Compatible with Linux and Windows App Service. Setting the WEBSITE_TIME_ZONE app setting takes precedence over this config. For Linux, expects tz database values https://www.iana.org/time-zones (for a quick reference see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For Windows, expects one of the time zones listed under HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones" + }, + "minimumElasticInstanceCount": { + "type": "integer", + "format": "int32", + "description": "Number of minimum instance count for a site\nThis setting only applies to the Elastic Plans", + "minimum": 0, + "maximum": 20 + }, + "azureStorageAccounts": { + "type": "object", + "description": "List of Azure Storage Accounts.", + "additionalProperties": { + "$ref": "#/definitions/AzureStorageInfoValue" + } + }, + "publicNetworkAccess": { + "type": "string", + "description": "Property to allow or block all public traffic." + } + } + }, + "SiteConfigPropertiesDictionary": { + "type": "object", + "description": "Site config properties dictionary.", + "properties": { + "use32BitWorkerProcess": { + "type": "boolean", + "description": "true if use32BitWorkerProcess should be set to true for the stack; otherwise, false.", + "readOnly": true + }, + "linuxFxVersion": { + "type": "string", + "description": "LinuxFxVersion configuration setting.", + "readOnly": true + }, + "javaVersion": { + "type": "string", + "description": "JavaVersion configuration setting.", + "readOnly": true + }, + "powerShellVersion": { + "type": "string", + "description": "PowerShellVersion configuration setting.", + "readOnly": true + } + } + }, + "SiteConfigResource": { + "type": "object", + "description": "Web app configuration ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteConfig", + "description": "Core resource properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SiteConfigResourceCollection": { + "type": "object", + "description": "Collection of site configurations.", + "properties": { + "value": { + "type": "array", + "description": "The SiteConfigResource items on this page", + "items": { + "$ref": "#/definitions/SiteConfigResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SiteConfigurationSnapshotInfo": { + "type": "object", + "description": "A snapshot of a web app configuration.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteConfigurationSnapshotInfoProperties", + "description": "SiteConfigurationSnapshotInfo resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SiteConfigurationSnapshotInfoCollection": { + "type": "object", + "description": "Collection of metadata for the app configuration snapshots that can be restored.", + "properties": { + "value": { + "type": "array", + "description": "The SiteConfigurationSnapshotInfo items on this page", + "items": { + "$ref": "#/definitions/SiteConfigurationSnapshotInfo" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SiteConfigurationSnapshotInfoProperties": { + "type": "object", + "description": "SiteConfigurationSnapshotInfo resource specific properties", + "properties": { + "time": { + "type": "string", + "format": "date-time", + "description": "The time the snapshot was taken.", + "readOnly": true + }, + "snapshotId": { + "type": "integer", + "format": "int32", + "description": "The id of the snapshot", + "readOnly": true + } + } + }, + "SiteContainer": { + "type": "object", + "description": "Container of a site", + "properties": { + "properties": { + "$ref": "#/definitions/SiteContainerProperties", + "description": "SiteContainer resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SiteContainerCollection": { + "type": "object", + "description": "Collection of site containers", + "properties": { + "value": { + "type": "array", + "description": "The SiteContainer items on this page", + "items": { + "$ref": "#/definitions/SiteContainer" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SiteContainerProperties": { + "type": "object", + "description": "SiteContainer resource specific properties", + "properties": { + "image": { + "type": "string", + "description": "Image Name" + }, + "targetPort": { + "type": "string", + "description": "Target Port" + }, + "isMain": { + "type": "boolean", + "description": "true if the container is the main site container; false otherwise." + }, + "startUpCommand": { + "type": "string", + "description": "StartUp Command" + }, + "authType": { + "$ref": "#/definitions/AuthType", + "description": "Auth Type" + }, + "userName": { + "type": "string", + "description": "User Name" + }, + "passwordSecret": { + "type": "string", + "description": "Password Secret" + }, + "userManagedIdentityClientId": { + "type": "string", + "description": "UserManagedIdentity ClientId" + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Created Time", + "readOnly": true + }, + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "description": "Last Modified Time", + "readOnly": true + }, + "volumeMounts": { + "type": "array", + "description": "List of volume mounts", + "items": { + "$ref": "#/definitions/VolumeMount" + }, + "x-ms-identifiers": [] + }, + "inheritAppSettingsAndConnectionStrings": { + "type": "boolean", + "description": "true if all AppSettings and ConnectionStrings have to be passed to the container as environment variables; false otherwise." + }, + "environmentVariables": { + "type": "array", + "description": "List of environment variables", + "items": { + "$ref": "#/definitions/EnvironmentVariable" + } + } + }, + "required": [ + "image", + "isMain" + ] + }, + "SiteDnsConfig": { + "type": "object", + "properties": { + "dnsServers": { + "type": "array", + "description": "List of custom DNS servers to be used by an app for lookups. Maximum 5 dns servers can be set.", + "items": { + "type": "string" + } + }, + "dnsAltServer": { + "type": "string", + "description": "Alternate DNS server to be used by apps. This property replicates the WEBSITE_DNS_ALT_SERVER app setting." + }, + "dnsRetryAttemptTimeout": { + "type": "integer", + "format": "int32", + "description": "Timeout for a single dns lookup in seconds. Allowed range: 1-30. Default is 3." + }, + "dnsRetryAttemptCount": { + "type": "integer", + "format": "int32", + "description": "Total number of retries for dns lookup. Allowed range: 1-5. Default is 3." + }, + "dnsMaxCacheTimeout": { + "type": "integer", + "format": "int32", + "description": "Custom time for DNS to be cached in seconds. Allowed range: 0-60. Default is 30 seconds. 0 means caching disabled." + }, + "dnsLegacySortOrder": { + "type": "boolean", + "description": "Indicates that sites using Virtual network custom DNS servers are still sorting the list of DNS servers. Read-Only.", + "readOnly": true + } + } + }, + "SiteExtensionInfo": { + "type": "object", + "description": "Site Extension Information.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteExtensionInfoProperties", + "description": "SiteExtensionInfo resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SiteExtensionInfoCollection": { + "type": "object", + "description": "Collection of Kudu site extension information elements.", + "properties": { + "value": { + "type": "array", + "description": "The SiteExtensionInfo items on this page", + "items": { + "$ref": "#/definitions/SiteExtensionInfo" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SiteExtensionInfoProperties": { + "type": "object", + "description": "SiteExtensionInfo resource specific properties", + "properties": { + "extension_id": { + "type": "string", + "description": "Site extension ID.", + "x-ms-client-name": "extensionId" + }, + "title": { + "type": "string" + }, + "extension_type": { + "$ref": "#/definitions/SiteExtensionType", + "description": "Site extension type.", + "x-ms-client-name": "extensionType" + }, + "summary": { + "type": "string", + "description": "Summary description." + }, + "description": { + "type": "string", + "description": "Detailed description." + }, + "version": { + "type": "string", + "description": "Version information." + }, + "extension_url": { + "type": "string", + "description": "Extension URL.", + "x-ms-client-name": "extensionUrl" + }, + "project_url": { + "type": "string", + "description": "Project URL.", + "x-ms-client-name": "projectUrl" + }, + "icon_url": { + "type": "string", + "description": "Icon URL.", + "x-ms-client-name": "iconUrl" + }, + "license_url": { + "type": "string", + "description": "License URL.", + "x-ms-client-name": "licenseUrl" + }, + "feed_url": { + "type": "string", + "description": "Feed URL.", + "x-ms-client-name": "feedUrl" + }, + "authors": { + "type": "array", + "description": "List of authors.", + "items": { + "type": "string" + } + }, + "installer_command_line_params": { + "type": "string", + "description": "Installer command line parameters.", + "x-ms-client-name": "installerCommandLineParams" + }, + "published_date_time": { + "type": "string", + "format": "date-time", + "description": "Published timestamp.", + "x-ms-client-name": "publishedDateTime" + }, + "download_count": { + "type": "integer", + "format": "int32", + "description": "Count of downloads.", + "x-ms-client-name": "downloadCount" + }, + "local_is_latest_version": { + "type": "boolean", + "description": "true if the local version is the latest version; false otherwise.", + "x-ms-client-name": "localIsLatestVersion" + }, + "local_path": { + "type": "string", + "description": "Local path.", + "x-ms-client-name": "localPath" + }, + "installed_date_time": { + "type": "string", + "format": "date-time", + "description": "Installed timestamp.", + "x-ms-client-name": "installedDateTime" + }, + "provisioningState": { + "type": "string", + "description": "Provisioning state." + }, + "comment": { + "type": "string", + "description": "Site Extension comment." + } + } + }, + "SiteExtensionType": { + "type": "string", + "description": "Site extension type.", + "enum": [ + "Gallery", + "WebRoot" + ], + "x-ms-enum": { + "name": "SiteExtensionType", + "modelAsString": false + } + }, + "SiteLimits": { + "type": "object", + "description": "Metric limits set on an app.", + "properties": { + "maxPercentageCpu": { + "type": "number", + "format": "double", + "description": "Maximum allowed CPU usage percentage." + }, + "maxMemoryInMb": { + "type": "integer", + "format": "int64", + "description": "Maximum allowed memory usage in MB." + }, + "maxDiskSizeInMb": { + "type": "integer", + "format": "int64", + "description": "Maximum allowed disk size usage in MB." + } + } + }, + "SiteLoadBalancing": { + "type": "string", + "description": "Site load balancing.", + "enum": [ + "WeightedRoundRobin", + "LeastRequests", + "LeastResponseTime", + "WeightedTotalTraffic", + "RequestHash", + "PerSiteRoundRobin", + "LeastRequestsWithTieBreaker" + ], + "x-ms-enum": { + "name": "SiteLoadBalancing", + "modelAsString": false + } + }, + "SiteLogsConfig": { + "type": "object", + "description": "Configuration of App Service site logs.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteLogsConfigProperties", + "description": "SiteLogsConfig resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SiteLogsConfigProperties": { + "type": "object", + "description": "SiteLogsConfig resource specific properties", + "properties": { + "applicationLogs": { + "$ref": "#/definitions/ApplicationLogsConfig", + "description": "Application logs configuration." + }, + "httpLogs": { + "$ref": "#/definitions/HttpLogsConfig", + "description": "HTTP logs configuration." + }, + "failedRequestsTracing": { + "$ref": "#/definitions/EnabledConfig", + "description": "Failed requests tracing configuration." + }, + "detailedErrorMessages": { + "$ref": "#/definitions/EnabledConfig", + "description": "Detailed error messages configuration." + } + } + }, + "SiteMachineKey": { + "type": "object", + "description": "MachineKey of an app.", + "properties": { + "validation": { + "type": "string", + "description": "MachineKey validation." + }, + "validationKey": { + "type": "string", + "description": "Validation key." + }, + "decryption": { + "type": "string", + "description": "Algorithm used for decryption." + }, + "decryptionKey": { + "type": "string", + "description": "Decryption key." + } + } + }, + "SitePatchResource": { + "type": "object", + "description": "ARM resource for a site.", + "properties": { + "properties": { + "$ref": "#/definitions/SitePatchResourceProperties", + "description": "SitePatchResource resource specific properties", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "Managed service identity." + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SitePatchResourceProperties": { + "type": "object", + "description": "SitePatchResource resource specific properties", + "properties": { + "state": { + "type": "string", + "description": "Current state of the app.", + "readOnly": true + }, + "hostNames": { + "type": "array", + "description": "Hostnames associated with the app.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "repositorySiteName": { + "type": "string", + "description": "Name of the repository site.", + "readOnly": true + }, + "usageState": { + "$ref": "#/definitions/UsageState", + "description": "State indicating whether the app has exceeded its quota usage. Read-only.", + "readOnly": true + }, + "enabled": { + "type": "boolean", + "description": "true if the app is enabled; otherwise, false. Setting this value to false disables the app (takes the app offline)." + }, + "enabledHostNames": { + "type": "array", + "description": "Enabled hostnames for the app.Hostnames need to be assigned (see HostNames) AND enabled. Otherwise,\nthe app is not served on those hostnames.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "availabilityState": { + "$ref": "#/definitions/SiteAvailabilityState", + "description": "Management information availability state for the app.", + "readOnly": true + }, + "hostNameSslStates": { + "type": "array", + "description": "Hostname SSL states are used to manage the SSL bindings for app's hostnames.", + "items": { + "$ref": "#/definitions/HostNameSslState" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "serverFarmId": { + "type": "string", + "description": "Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\"." + }, + "reserved": { + "type": "boolean", + "description": "true if reserved; otherwise, false.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "isXenon": { + "type": "boolean", + "description": "Obsolete: Hyper-V sandbox.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "hyperV": { + "type": "boolean", + "description": "Hyper-V sandbox.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "lastModifiedTimeUtc": { + "type": "string", + "format": "date-time", + "description": "Last time the app was modified, in UTC. Read-only.", + "readOnly": true + }, + "dnsConfiguration": { + "$ref": "#/definitions/SiteDnsConfig", + "description": "Property to configure various DNS related settings for a site." + }, + "siteConfig": { + "$ref": "#/definitions/SiteConfig", + "description": "Configuration of the app." + }, + "trafficManagerHostNames": { + "type": "array", + "description": "Azure Traffic Manager hostnames associated with the app. Read-only.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "scmSiteAlsoStopped": { + "type": "boolean", + "description": "true to stop SCM (KUDU) site when the app is stopped; otherwise, false. The default is false.", + "default": false + }, + "targetSwapSlot": { + "type": "string", + "description": "Specifies which deployment slot this app will swap into. Read-only.", + "readOnly": true + }, + "hostingEnvironmentProfile": { + "$ref": "#/definitions/HostingEnvironmentProfile", + "description": "App Service Environment to use for the app.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "clientAffinityEnabled": { + "type": "boolean", + "description": "true to enable client affinity; false to stop sending session affinity cookies, which route client requests in the same session to the same instance. Default is true." + }, + "clientAffinityProxyEnabled": { + "type": "boolean", + "description": "true to override client affinity cookie domain with X-Forwarded-Host request header. false to use default domain. Default is false." + }, + "clientCertEnabled": { + "type": "boolean", + "description": "true to enable client certificate authentication (TLS mutual authentication); otherwise, false. Default is false." + }, + "clientCertMode": { + "$ref": "#/definitions/ClientCertMode", + "description": "This composes with ClientCertEnabled setting.\n- ClientCertEnabled: false means ClientCert is ignored.\n- ClientCertEnabled: true and ClientCertMode: Required means ClientCert is required.\n- ClientCertEnabled: true and ClientCertMode: Optional means ClientCert is optional or accepted." + }, + "clientCertExclusionPaths": { + "type": "string", + "description": "client certificate authentication comma-separated exclusion paths" + }, + "hostNamesDisabled": { + "type": "boolean", + "description": "true to disable the public hostnames of the app; otherwise, false.\\n If true, the app is only accessible via API management process." + }, + "customDomainVerificationId": { + "type": "string", + "description": "Unique identifier that verifies the custom domains assigned to the app. Customer will add this id to a txt record for verification." + }, + "outboundIpAddresses": { + "type": "string", + "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from tenants that site can be hosted with current settings. Read-only.", + "readOnly": true + }, + "possibleOutboundIpAddresses": { + "type": "string", + "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from all tenants except dataComponent. Read-only.", + "readOnly": true + }, + "containerSize": { + "type": "integer", + "format": "int32", + "description": "Size of the function container." + }, + "dailyMemoryTimeQuota": { + "type": "integer", + "format": "int32", + "description": "Maximum allowed daily memory-time quota (applicable on dynamic apps only)." + }, + "suspendedTill": { + "type": "string", + "format": "date-time", + "description": "App suspended till in case memory-time quota is exceeded.", + "readOnly": true + }, + "maxNumberOfWorkers": { + "type": "integer", + "format": "int32", + "description": "Maximum number of workers.\nThis only applies to Functions container.", + "readOnly": true + }, + "cloningInfo": { + "$ref": "#/definitions/CloningInfo", + "description": "If specified during app creation, the app is cloned from a source app.", + "x-ms-mutability": [ + "create" + ] + }, + "resourceGroup": { + "type": "string", + "description": "Name of the resource group the app belongs to. Read-only.", + "readOnly": true + }, + "isDefaultContainer": { + "type": "boolean", + "description": "true if the app is a default container; otherwise, false.", + "readOnly": true + }, + "defaultHostName": { + "type": "string", + "description": "Default hostname of the app. Read-only.", + "readOnly": true + }, + "slotSwapStatus": { + "$ref": "#/definitions/SlotSwapStatus", + "description": "Status of the last deployment slot swap operation.", + "readOnly": true + }, + "httpsOnly": { + "type": "boolean", + "description": "HttpsOnly: configures a web site to accept only https requests. Issues redirect for\nhttp requests" + }, + "redundancyMode": { + "$ref": "#/definitions/RedundancyMode", + "description": "Site redundancy mode" + }, + "inProgressOperationId": { + "type": "string", + "format": "uuid", + "description": "Specifies an operation id if this site has a pending operation.", + "readOnly": true + }, + "publicNetworkAccess": { + "type": "string", + "description": "Property to allow or block all public traffic. Allowed Values: 'Enabled', 'Disabled' or an empty string." + }, + "storageAccountRequired": { + "type": "boolean", + "description": "Checks if Customer provided storage account is required" + }, + "keyVaultReferenceIdentity": { + "type": "string", + "description": "Identity to use for Key Vault Reference authentication." + }, + "virtualNetworkSubnetId": { + "type": "string", + "description": "Azure Resource Manager ID of the Virtual network and subnet to be joined by Regional VNET Integration.\nThis must be of the form /subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}" + } + } + }, + "SitePhpErrorLogFlag": { + "type": "object", + "description": "Used for getting PHP error logging flag.", + "properties": { + "properties": { + "$ref": "#/definitions/SitePhpErrorLogFlagProperties", + "description": "SitePhpErrorLogFlag resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SitePhpErrorLogFlagProperties": { + "type": "object", + "description": "SitePhpErrorLogFlag resource specific properties", + "properties": { + "localLogErrors": { + "type": "string", + "description": "Local log_errors setting." + }, + "masterLogErrors": { + "type": "string", + "description": "Master log_errors setting." + }, + "localLogErrorsMaxLength": { + "type": "string", + "description": "Local log_errors_max_len setting." + }, + "masterLogErrorsMaxLength": { + "type": "string", + "description": "Master log_errors_max_len setting." + } + } + }, + "SiteProperties": { + "type": "object", + "description": "Site resource specific properties", + "properties": { + "state": { + "type": "string", + "description": "Current state of the app.", + "readOnly": true + }, + "hostNames": { + "type": "array", + "description": "Hostnames associated with the app.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "repositorySiteName": { + "type": "string", + "description": "Name of the repository site.", + "readOnly": true + }, + "usageState": { + "$ref": "#/definitions/UsageState", + "description": "State indicating whether the app has exceeded its quota usage. Read-only.", + "readOnly": true + }, + "enabled": { + "type": "boolean", + "description": "true if the app is enabled; otherwise, false. Setting this value to false disables the app (takes the app offline)." + }, + "enabledHostNames": { + "type": "array", + "description": "Enabled hostnames for the app.Hostnames need to be assigned (see HostNames) AND enabled. Otherwise,\nthe app is not served on those hostnames.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "availabilityState": { + "$ref": "#/definitions/SiteAvailabilityState", + "description": "Management information availability state for the app.", + "readOnly": true + }, + "hostNameSslStates": { + "type": "array", + "description": "Hostname SSL states are used to manage the SSL bindings for app's hostnames.", + "items": { + "$ref": "#/definitions/HostNameSslState" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "serverFarmId": { + "type": "string", + "description": "Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\"." + }, + "reserved": { + "type": "boolean", + "description": "true if reserved; otherwise, false.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "isXenon": { + "type": "boolean", + "description": "Obsolete: Hyper-V sandbox.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "hyperV": { + "type": "boolean", + "description": "Hyper-V sandbox.", + "default": false, + "x-ms-mutability": [ + "read", + "create" + ] + }, + "lastModifiedTimeUtc": { + "type": "string", + "format": "date-time", + "description": "Last time the app was modified, in UTC. Read-only.", + "readOnly": true + }, + "dnsConfiguration": { + "$ref": "#/definitions/SiteDnsConfig", + "description": "Property to configure various DNS related settings for a site." + }, + "outboundVnetRouting": { + "$ref": "#/definitions/OutboundVnetRouting", + "description": "Property to configure various outbound traffic routing options over virtual network for a site" + }, + "siteConfig": { + "$ref": "#/definitions/SiteConfig", + "description": "Configuration of an App Service app. This property is not returned in response to normal create and read requests since it may contain sensitive information.", + "x-ms-mutability": [ + "update", + "create" + ] + }, + "functionAppConfig": { + "$ref": "#/definitions/FunctionAppConfig", + "description": "Configuration specific of the Azure Function app." + }, + "daprConfig": { + "$ref": "#/definitions/DaprConfig", + "description": "Dapr configuration of the app." + }, + "workloadProfileName": { + "type": "string", + "description": "Workload profile name for function app to execute on." + }, + "resourceConfig": { + "$ref": "#/definitions/ResourceConfig", + "description": "Function app resource requirements." + }, + "trafficManagerHostNames": { + "type": "array", + "description": "Azure Traffic Manager hostnames associated with the app. Read-only.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "scmSiteAlsoStopped": { + "type": "boolean", + "description": "true to stop SCM (KUDU) site when the app is stopped; otherwise, false. The default is false.", + "default": false + }, + "targetSwapSlot": { + "type": "string", + "description": "Specifies which deployment slot this app will swap into. Read-only.", + "readOnly": true + }, + "hostingEnvironmentProfile": { + "$ref": "#/definitions/HostingEnvironmentProfile", + "description": "App Service Environment to use for the app.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "clientAffinityEnabled": { + "type": "boolean", + "description": "true to enable client affinity; false to stop sending session affinity cookies, which route client requests in the same session to the same instance. Default is true.", + "default": false + }, + "clientAffinityPartitioningEnabled": { + "type": "boolean", + "description": "true to enable client affinity partitioning using CHIPS cookies, this will add the partitioned property to the affinity cookies; false to stop sending partitioned affinity cookies. Default is false." + }, + "clientAffinityProxyEnabled": { + "type": "boolean", + "description": "true to override client affinity cookie domain with X-Forwarded-Host request header. false to use default domain. Default is false." + }, + "clientCertEnabled": { + "type": "boolean", + "description": "true to enable client certificate authentication (TLS mutual authentication); otherwise, false. Default is false." + }, + "clientCertMode": { + "$ref": "#/definitions/ClientCertMode", + "description": "This composes with ClientCertEnabled setting.\n- ClientCertEnabled: false means ClientCert is ignored.\n- ClientCertEnabled: true and ClientCertMode: Required means ClientCert is required.\n- ClientCertEnabled: true and ClientCertMode: Optional means ClientCert is optional or accepted." + }, + "clientCertExclusionPaths": { + "type": "string", + "description": "client certificate authentication comma-separated exclusion paths" + }, + "ipMode": { + "$ref": "#/definitions/IPMode", + "description": "Specifies the IP mode of the app." + }, + "endToEndEncryptionEnabled": { + "type": "boolean", + "description": "Whether to use end to end encryption between the FrontEnd and the Worker" + }, + "sshEnabled": { + "type": "boolean", + "description": "Whether to enable ssh access." + }, + "hostNamesDisabled": { + "type": "boolean", + "description": "true to disable the public hostnames of the app; otherwise, false.\nIf true, the app is only accessible via API management process." + }, + "customDomainVerificationId": { + "type": "string", + "description": "Unique identifier that verifies the custom domains assigned to the app. Customer will add this id to a txt record for verification." + }, + "outboundIpAddresses": { + "type": "string", + "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from tenants that site can be hosted with current settings. Read-only.", + "readOnly": true + }, + "possibleOutboundIpAddresses": { + "type": "string", + "description": "List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from all tenants except dataComponent. Read-only.", + "readOnly": true + }, + "containerSize": { + "type": "integer", + "format": "int32", + "description": "Size of the function container." + }, + "dailyMemoryTimeQuota": { + "type": "integer", + "format": "int32", + "description": "Maximum allowed daily memory-time quota (applicable on dynamic apps only)." + }, + "suspendedTill": { + "type": "string", + "format": "date-time", + "description": "App suspended till in case memory-time quota is exceeded.", + "readOnly": true + }, + "maxNumberOfWorkers": { + "type": "integer", + "format": "int32", + "description": "Maximum number of workers.\nThis only applies to Functions container.", + "readOnly": true + }, + "cloningInfo": { + "$ref": "#/definitions/CloningInfo", + "description": "If specified during app creation, the app is cloned from a source app.", + "x-ms-mutability": [ + "create" + ] + }, + "resourceGroup": { + "type": "string", + "description": "Name of the resource group the app belongs to. Read-only.", + "readOnly": true + }, + "isDefaultContainer": { + "type": "boolean", + "description": "true if the app is a default container; otherwise, false.", + "readOnly": true + }, + "defaultHostName": { + "type": "string", + "description": "Default hostname of the app. Read-only.", + "readOnly": true + }, + "slotSwapStatus": { + "$ref": "#/definitions/SlotSwapStatus", + "description": "Status of the last deployment slot swap operation.", + "readOnly": true + }, + "httpsOnly": { + "type": "boolean", + "description": "HttpsOnly: configures a web site to accept only https requests. Issues redirect for\nhttp requests" + }, + "redundancyMode": { + "$ref": "#/definitions/RedundancyMode", + "description": "Site redundancy mode" + }, + "inProgressOperationId": { + "type": "string", + "format": "uuid", + "description": "Specifies an operation id if this site has a pending operation.", + "readOnly": true + }, + "publicNetworkAccess": { + "type": "string", + "description": "Property to allow or block all public traffic. Allowed Values: 'Enabled', 'Disabled' or an empty string." + }, + "storageAccountRequired": { + "type": "boolean", + "description": "Checks if Customer provided storage account is required" + }, + "keyVaultReferenceIdentity": { + "type": "string", + "description": "Identity to use for Key Vault Reference authentication." + }, + "autoGeneratedDomainNameLabelScope": { + "$ref": "#/definitions/AutoGeneratedDomainNameLabelScope", + "description": "Specifies the scope of uniqueness for the default hostname during resource creation" + }, + "virtualNetworkSubnetId": { + "type": "string", + "description": "Azure Resource Manager ID of the Virtual network and subnet to be joined by Regional VNET Integration.\nThis must be of the form /subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}" + }, + "managedEnvironmentId": { + "type": "string", + "description": "Azure Resource Manager ID of the customer's selected Managed Environment on which to host this app. This must be of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.App/managedEnvironments/{managedEnvironmentName}" + }, + "sku": { + "type": "string", + "description": "Current SKU of application based on associated App Service Plan. Some valid SKU values are Free, Shared, Basic, Dynamic, FlexConsumption, Standard, Premium, PremiumV2, PremiumV3, Isolated, IsolatedV2", + "readOnly": true + } + } + }, + "SiteRuntimeState": { + "type": "string", + "enum": [ + "READY", + "STOPPED", + "UNKNOWN" + ], + "x-ms-enum": { + "name": "SiteRuntimeState", + "modelAsString": false + } + }, + "SiteSilo": { + "type": "object", + "description": "Represents a silo of an App Service site.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteSiloProperties", + "description": "SiteSilo resource specific properties" + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "SiteSiloCollection": { + "type": "object", + "description": "Collection of site silo resources.", + "properties": { + "value": { + "type": "array", + "description": "The SiteSilo items on this page", + "items": { + "$ref": "#/definitions/SiteSilo" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SiteSiloProperties": { + "type": "object", + "description": "Properties of a site silo resource.", + "properties": { + "siloLocation": { + "type": "string", + "description": "ARM location of the silo." + }, + "primarySiteName": { + "type": "string", + "description": "Name of the primary site." + }, + "primaryLocation": { + "type": "string", + "description": "Region of the primary site." + }, + "endpointStatus": { + "type": "string", + "description": "Status of the silo's Traffic Manager endpoint. Values: \"Enabled\" or \"Disabled\"." + }, + "trafficMode": { + "$ref": "#/definitions/SiloFailOverMode", + "description": "Traffic mode for the silo's Traffic Manager profile.\nInput-only on first silo create. Not returned on GET." + }, + "networkingOverride": { + "$ref": "#/definitions/SiloNetworkingOverride", + "description": "Networking overrides for the silo, including VNet integration." + }, + "appSettingsOverrides": { + "type": "array", + "description": "Application setting overrides for the silo.", + "items": { + "$ref": "#/definitions/NameValuePair" + } + }, + "provisioningState": { + "$ref": "#/definitions/SiloProvisioningState", + "description": "Provisioning state of the silo.", + "readOnly": true + }, + "followLkg": { + "type": "boolean", + "description": "Whether the silo should follow the last known good revision." + }, + "revisionId": { + "type": "string", + "description": "Short identifier of the revision currently applied to this silo (read-only).", + "readOnly": true + }, + "defaultHostName": { + "type": "string", + "description": "Default host name of the silo site (read-only).", + "readOnly": true + }, + "globalHostName": { + "type": "string", + "description": "Global Traffic Manager hostname for the site group (read-only).", + "readOnly": true + }, + "monitorStatus": { + "type": "string", + "description": "Health monitoring status of the silo's Traffic Manager endpoint (read-only).", + "readOnly": true + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Time when the silo was created.", + "readOnly": true + }, + "lastModifiedTime": { + "type": "string", + "format": "date-time", + "description": "Time when the silo was last modified.", + "readOnly": true + } + }, + "required": [ + "primaryLocation" + ] + }, + "SiteSourceControl": { + "type": "object", + "description": "Source control configuration for an app.", + "properties": { + "properties": { + "$ref": "#/definitions/SiteSourceControlProperties", + "description": "SiteSourceControl resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SiteSourceControlProperties": { + "type": "object", + "description": "SiteSourceControl resource specific properties", + "properties": { + "repoUrl": { + "type": "string", + "description": "Repository or source control URL.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "branch": { + "type": "string", + "description": "Name of branch to use for deployment.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "isManualIntegration": { + "type": "boolean", + "description": "true to limit to manual integration; false to enable continuous integration (which configures webhooks into online repos like GitHub).", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "isGitHubAction": { + "type": "boolean", + "description": "true if this is deployed via GitHub action.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "deploymentRollbackEnabled": { + "type": "boolean", + "description": "true to enable deployment rollback; otherwise, false.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "isMercurial": { + "type": "boolean", + "description": "true for a Mercurial repository; false for a Git repository.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "gitHubActionConfiguration": { + "$ref": "#/definitions/GitHubActionConfiguration", + "description": "If GitHub Action is selected, than the associated configuration." + } + } + }, + "SiteUpdateStrategyType": { + "type": "string", + "description": "Function app site update strategy type. Available options: Recreate, RollingUpdate", + "enum": [ + "Recreate", + "RollingUpdate" + ], + "x-ms-enum": { + "name": "SiteUpdateStrategyType", + "modelAsString": true, + "values": [ + { + "name": "Recreate", + "value": "Recreate", + "description": "If the app is under load and a deployment or site state update occurs, all pods will be removed\nand will need to be Recreated all at once. This is the default behavior." + }, + { + "name": "RollingUpdate", + "value": "RollingUpdate", + "description": "If the app is under load and a deployment or site state update occurs, pods will be drained in\nbatches and gradually replaced, thus minimizing impact to throughput." + } + ] + } + }, + "SkuCapacity": { + "type": "object", + "description": "Description of the App Service plan scale options.", + "properties": { + "minimum": { + "type": "integer", + "format": "int32", + "description": "Minimum number of workers for this App Service plan SKU." + }, + "maximum": { + "type": "integer", + "format": "int32", + "description": "Maximum number of workers for this App Service plan SKU." + }, + "elasticMaximum": { + "type": "integer", + "format": "int32", + "description": "Maximum number of Elastic workers for this App Service plan SKU." + }, + "default": { + "type": "integer", + "format": "int32", + "description": "Default number of workers for this App Service plan SKU." + }, + "scaleType": { + "type": "string", + "description": "Available scale configurations for an App Service plan." + } + } + }, + "SkuDescription": { + "type": "object", + "description": "Description of a SKU for a scalable resource.", + "properties": { + "name": { + "type": "string", + "description": "Name of the resource SKU." + }, + "tier": { + "type": "string", + "description": "Service tier of the resource SKU." + }, + "size": { + "type": "string", + "description": "Size specifier of the resource SKU." + }, + "family": { + "type": "string", + "description": "Family code of the resource SKU." + }, + "capacity": { + "type": "integer", + "format": "int32", + "description": "Current number of instances assigned to the resource." + }, + "skuCapacity": { + "$ref": "#/definitions/SkuCapacity", + "description": "Min, max, and default scale values of the SKU." + }, + "locations": { + "type": "array", + "description": "Locations of the SKU.", + "items": { + "type": "string" + } + }, + "capabilities": { + "type": "array", + "description": "Capabilities of the SKU, e.g., is traffic manager enabled?", + "items": { + "$ref": "#/definitions/Capability" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "SkuInfo": { + "type": "object", + "description": "SKU discovery information.", + "properties": { + "resourceType": { + "type": "string", + "description": "Resource type that this SKU applies to." + }, + "sku": { + "$ref": "#/definitions/SkuDescription", + "description": "Name and tier of the SKU." + }, + "capacity": { + "$ref": "#/definitions/SkuCapacity", + "description": "Min, max, and default scale values of the SKU." + } + } + }, + "SkuInfoCollection": { + "type": "object", + "description": "Paged collection of SkuInfo items", + "properties": { + "value": { + "type": "array", + "description": "The SkuInfo items on this page", + "items": { + "$ref": "#/definitions/SkuInfo" + }, + "x-ms-identifiers": [ + "/sku/name", + "resourceType" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SkuInfos": { + "type": "object", + "description": "Collection of SKU information.", + "properties": { + "resourceType": { + "type": "string", + "description": "Resource type that this SKU applies to." + }, + "skus": { + "type": "array", + "description": "List of SKUs the subscription is able to use.", + "items": { + "$ref": "#/definitions/GlobalCsmSkuDescription" + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "SlotConfigNames": { + "type": "object", + "description": "Names for connection strings, application settings, and external Azure storage account configuration\nidentifiers to be marked as sticky to the deployment slot and not moved during a swap operation.\nThis is valid for all deployment slots in an app.", + "properties": { + "connectionStringNames": { + "type": "array", + "description": "List of connection string names.", + "items": { + "type": "string" + } + }, + "appSettingNames": { + "type": "array", + "description": "List of application settings names.", + "items": { + "type": "string" + } + }, + "azureStorageConfigNames": { + "type": "array", + "description": "List of external Azure storage account identifiers.", + "items": { + "type": "string" + } + } + } + }, + "SlotConfigNamesResource": { + "type": "object", + "description": "Slot Config names azure resource.", + "properties": { + "properties": { + "$ref": "#/definitions/SlotConfigNames", + "description": "Core resource properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SlotDifference": { + "type": "object", + "description": "A setting difference between two deployment slots of an app.", + "properties": { + "properties": { + "$ref": "#/definitions/SlotDifferenceProperties", + "description": "SlotDifference resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SlotDifferenceCollection": { + "type": "object", + "description": "Collection of slot differences.", + "properties": { + "value": { + "type": "array", + "description": "The SlotDifference items on this page", + "items": { + "$ref": "#/definitions/SlotDifference" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SlotDifferenceProperties": { + "type": "object", + "description": "SlotDifference resource specific properties", + "properties": { + "level": { + "type": "string", + "description": "Level of the difference: Information, Warning or Error.", + "readOnly": true + }, + "settingType": { + "type": "string", + "description": "The type of the setting: General, AppSetting or ConnectionString.", + "readOnly": true + }, + "diffRule": { + "type": "string", + "description": "Rule that describes how to process the setting difference during a slot swap.", + "readOnly": true + }, + "settingName": { + "type": "string", + "description": "Name of the setting.", + "readOnly": true + }, + "valueInCurrentSlot": { + "type": "string", + "description": "Value of the setting in the current slot.", + "readOnly": true + }, + "valueInTargetSlot": { + "type": "string", + "description": "Value of the setting in the target slot.", + "readOnly": true + }, + "description": { + "type": "string", + "description": "Description of the setting difference.", + "readOnly": true + } + } + }, + "SlotSwapStatus": { + "type": "object", + "description": "The status of the last successful slot swap operation.", + "properties": { + "timestampUtc": { + "type": "string", + "format": "date-time", + "description": "The time the last successful slot swap completed.", + "readOnly": true + }, + "sourceSlotName": { + "type": "string", + "description": "The source slot of the last swap operation.", + "readOnly": true + }, + "destinationSlotName": { + "type": "string", + "description": "The destination slot of the last swap operation.", + "readOnly": true + } + } + }, + "SlowRequestsBasedTrigger": { + "type": "object", + "description": "Trigger based on request execution time.", + "properties": { + "timeTaken": { + "type": "string", + "description": "Time taken." + }, + "path": { + "type": "string", + "description": "Request Path." + }, + "count": { + "type": "integer", + "format": "int32", + "description": "Request Count." + }, + "timeInterval": { + "type": "string", + "description": "Time interval." + } + } + }, + "Snapshot": { + "type": "object", + "description": "A snapshot of an app.", + "properties": { + "properties": { + "$ref": "#/definitions/SnapshotProperties", + "description": "Snapshot resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SnapshotCollection": { + "type": "object", + "description": "Collection of snapshots which can be used to revert an app to a previous time.", + "properties": { + "value": { + "type": "array", + "description": "The Snapshot items on this page", + "items": { + "$ref": "#/definitions/Snapshot" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SnapshotProperties": { + "type": "object", + "description": "Snapshot resource specific properties", + "properties": { + "time": { + "type": "string", + "description": "The time the snapshot was taken.", + "readOnly": true + } + } + }, + "SnapshotRecoverySource": { + "type": "object", + "description": "Specifies the web app that snapshot contents will be retrieved from.", + "properties": { + "location": { + "type": "string", + "description": "Geographical location of the source web app, e.g. SouthEastAsia, SouthCentralUS" + }, + "id": { + "type": "string", + "description": "ARM resource ID of the source app.\n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and\n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots." + } + } + }, + "SnapshotRestoreRequest": { + "type": "object", + "description": "Details about app recovery operation.", + "properties": { + "properties": { + "$ref": "#/definitions/SnapshotRestoreRequestProperties", + "description": "SnapshotRestoreRequest resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SnapshotRestoreRequestProperties": { + "type": "object", + "description": "SnapshotRestoreRequest resource specific properties", + "properties": { + "snapshotTime": { + "type": "string", + "description": "Point in time in which the app restore should be done, formatted as a DateTime string." + }, + "recoverySource": { + "$ref": "#/definitions/SnapshotRecoverySource", + "description": "Optional. Specifies the web app that snapshot contents will be retrieved from.\nIf empty, the targeted web app will be used as the source." + }, + "overwrite": { + "type": "boolean", + "description": "If true the restore operation can overwrite source app; otherwise, false." + }, + "recoverConfiguration": { + "type": "boolean", + "description": "If true, site configuration, in addition to content, will be reverted." + }, + "ignoreConflictingHostNames": { + "type": "boolean", + "description": "If true, custom hostname conflicts will be ignored when recovering to a target web app.\nThis setting is only necessary when RecoverConfiguration is enabled." + }, + "useDRSecondary": { + "type": "boolean", + "description": "If true, the snapshot is retrieved from DRSecondary endpoint." + } + }, + "required": [ + "overwrite" + ] + }, + "Solution": { + "type": "object", + "description": "Class Representing Solution for problems detected.", + "properties": { + "id": { + "type": "number", + "format": "double", + "description": "Solution Id." + }, + "displayName": { + "type": "string", + "description": "Display Name of the solution" + }, + "order": { + "type": "number", + "format": "double", + "description": "Order of the solution." + }, + "description": { + "type": "string", + "description": "Description of the solution" + }, + "type": { + "$ref": "#/definitions/SolutionType", + "description": "Type of Solution" + }, + "data": { + "type": "array", + "description": "Solution Data.", + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/NameValuePair" + } + }, + "x-ms-identifiers": [ + "name" + ] + }, + "metadata": { + "type": "array", + "description": "Solution Metadata.", + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/NameValuePair" + } + }, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "SolutionType": { + "type": "string", + "description": "Type of Solution", + "enum": [ + "QuickSolution", + "DeepInvestigation", + "BestPractices" + ], + "x-ms-enum": { + "name": "SolutionType", + "modelAsString": false + } + }, + "SourceControl": { + "type": "object", + "description": "The source control OAuth token.", + "properties": { + "properties": { + "$ref": "#/definitions/SourceControlProperties", + "description": "SourceControl resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SourceControlCollection": { + "type": "object", + "description": "Collection of source controls.", + "properties": { + "value": { + "type": "array", + "description": "The SourceControl items on this page", + "items": { + "$ref": "#/definitions/SourceControl" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "SourceControlProperties": { + "type": "object", + "description": "SourceControl resource specific properties", + "properties": { + "token": { + "type": "string", + "description": "OAuth access token." + }, + "tokenSecret": { + "type": "string", + "description": "OAuth access token secret." + }, + "refreshToken": { + "type": "string", + "description": "OAuth refresh token." + }, + "expirationTime": { + "type": "string", + "format": "date-time", + "description": "OAuth token expiration." + } + } + }, + "SslState": { + "type": "string", + "description": "SSL type", + "enum": [ + "Disabled", + "SniEnabled", + "IpBasedEnabled" + ], + "x-ms-enum": { + "name": "SslState", + "modelAsString": false + } + }, + "StackMajorVersion": { + "type": "object", + "description": "Application stack major version.", + "properties": { + "displayVersion": { + "type": "string", + "description": "Application stack major version (display only)." + }, + "runtimeVersion": { + "type": "string", + "description": "Application stack major version (runtime only)." + }, + "isDefault": { + "type": "boolean", + "description": "true if this is the default major version; otherwise, false." + }, + "minorVersions": { + "type": "array", + "description": "Minor versions associated with the major version.", + "items": { + "$ref": "#/definitions/StackMinorVersion" + }, + "x-ms-identifiers": [ + "runtimeVersion" + ] + }, + "applicationInsights": { + "type": "boolean", + "description": "true if this supports Application Insights; otherwise, false." + }, + "isPreview": { + "type": "boolean", + "description": "true if this stack is in Preview, otherwise false." + }, + "isDeprecated": { + "type": "boolean", + "description": "true if this stack has been deprecated, otherwise false." + }, + "isHidden": { + "type": "boolean", + "description": "true if this stack should be hidden for new customers on portal, otherwise false." + }, + "appSettingsDictionary": { + "type": "object", + "description": "\n\n\nExample: All the function apps need AppSetting: \"FUNCTIONS_WORKER_RUNTIME\" to be set stack name", + "additionalProperties": {} + }, + "siteConfigPropertiesDictionary": { + "type": "object", + "description": "\n\n\nExample: All Linux Function Apps, need Use32BitWorkerProcess to be set to 0", + "additionalProperties": {} + } + } + }, + "StackMinorVersion": { + "type": "object", + "description": "Application stack minor version.", + "properties": { + "displayVersion": { + "type": "string", + "description": "Application stack minor version (display only)." + }, + "runtimeVersion": { + "type": "string", + "description": "Application stack minor version (runtime only)." + }, + "isDefault": { + "type": "boolean", + "description": "true if this is the default minor version; otherwise, false." + }, + "isRemoteDebuggingEnabled": { + "type": "boolean", + "description": "true if this supports Remote Debugging, otherwise false." + } + } + }, + "StackPreferredOs": { + "type": "string", + "description": "Function App stack preferred OS.", + "enum": [ + "Windows", + "Linux" + ], + "x-ms-enum": { + "name": "StackPreferredOs", + "modelAsString": false + } + }, + "StagingEnvironmentPolicy": { + "type": "string", + "description": "State indicating whether staging environments are allowed or not allowed for a static web app.", + "enum": [ + "Enabled", + "Disabled" + ], + "x-ms-enum": { + "name": "StagingEnvironmentPolicy", + "modelAsString": false + } + }, + "StampCapacity": { + "type": "object", + "description": "Stamp capacity information.", + "properties": { + "name": { + "type": "string", + "description": "Name of the stamp." + }, + "availableCapacity": { + "type": "integer", + "format": "int64", + "description": "Available capacity (# of machines, bytes of storage etc...)." + }, + "totalCapacity": { + "type": "integer", + "format": "int64", + "description": "Total capacity (# of machines, bytes of storage etc...)." + }, + "unit": { + "type": "string", + "description": "Name of the unit." + }, + "computeMode": { + "$ref": "#/definitions/ComputeModeOptions", + "description": "Shared/dedicated workers." + }, + "workerSize": { + "$ref": "#/definitions/WorkerSizeOptions", + "description": "Size of the machines." + }, + "workerSizeId": { + "type": "integer", + "format": "int32", + "description": "Size ID of machines:\n0 - Small\n1 - Medium\n2 - Large" + }, + "excludeFromCapacityAllocation": { + "type": "boolean", + "description": "If true, it includes basic apps.\nBasic apps are not used for capacity allocation." + }, + "isApplicableForAllComputeModes": { + "type": "boolean", + "description": "true if capacity is applicable for all apps; otherwise, false." + }, + "siteMode": { + "type": "string", + "description": "Shared or Dedicated." + }, + "isLinux": { + "type": "boolean", + "description": "Is this a linux stamp capacity" + } + } + }, + "StampCapacityCollection": { + "type": "object", + "description": "Paged collection of StampCapacity items", + "properties": { + "value": { + "type": "array", + "description": "The StampCapacity items on this page", + "items": { + "$ref": "#/definitions/StampCapacity" + }, + "x-ms-identifiers": [ + "name" + ] + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSite": { + "type": "object", + "description": "A static site.", + "properties": { + "defaultHostname": { + "type": "string", + "description": "The default autogenerated hostname for the static site.", + "readOnly": true + }, + "repositoryUrl": { + "type": "string", + "description": "URL for the repository of the static site." + }, + "branch": { + "type": "string", + "description": "The target branch in the repository." + }, + "customDomains": { + "type": "array", + "description": "The custom domains associated with this static site.", + "items": { + "type": "string" + }, + "readOnly": true + }, + "repositoryToken": { + "type": "string", + "description": "A user's github repository token. This is used to setup the Github Actions workflow file and API secrets." + }, + "buildProperties": { + "$ref": "#/definitions/StaticSiteBuildProperties", + "description": "Build properties to configure on the repository." + }, + "privateEndpointConnections": { + "type": "array", + "description": "Private endpoint connections", + "items": { + "$ref": "#/definitions/ResponseMessageEnvelopeRemotePrivateEndpointConnection" + }, + "readOnly": true + }, + "stagingEnvironmentPolicy": { + "$ref": "#/definitions/StagingEnvironmentPolicy", + "description": "State indicating whether staging environments are allowed or not allowed for a static web app." + }, + "allowConfigFileUpdates": { + "type": "boolean", + "description": "false if config file is locked for this static web app; otherwise, true." + }, + "templateProperties": { + "$ref": "#/definitions/StaticSiteTemplateOptions", + "description": "Template options for generating a new repository." + }, + "contentDistributionEndpoint": { + "type": "string", + "description": "The content distribution endpoint for the static site.", + "readOnly": true + }, + "keyVaultReferenceIdentity": { + "type": "string", + "description": "Identity to use for Key Vault Reference authentication.", + "readOnly": true + }, + "userProvidedFunctionApps": { + "type": "array", + "description": "User provided function apps registered with the static site", + "items": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionApp" + }, + "readOnly": true + }, + "linkedBackends": { + "type": "array", + "description": "Backends linked to the static side", + "items": { + "$ref": "#/definitions/StaticSiteLinkedBackend" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "provider": { + "type": "string", + "description": "The provider that submitted the last deployment to the primary environment of the static site." + }, + "enterpriseGradeCdnStatus": { + "$ref": "#/definitions/EnterpriseGradeCdnStatus", + "description": "State indicating the status of the enterprise grade CDN serving traffic to the static web app." + }, + "publicNetworkAccess": { + "type": "string", + "description": "State indicating whether public traffic are allowed or not for a static web app. Allowed Values: 'Enabled', 'Disabled' or an empty string." + }, + "databaseConnections": { + "type": "array", + "description": "Database connections for the static site", + "items": { + "$ref": "#/definitions/DatabaseConnectionOverview" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "StaticSiteARMResource": { + "type": "object", + "description": "Concrete tracked resource types can be created by aliasing this type using a specific property type.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSite", + "description": "Core resource properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + }, + "sku": { + "$ref": "#/definitions/SkuDescription", + "description": "Description of a SKU for a scalable resource." + }, + "identity": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "Managed service identity." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "StaticSiteBasicAuthPropertiesARMResource": { + "type": "object", + "description": "Static site basic auth properties ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteBasicAuthPropertiesARMResourceProperties", + "description": "StaticSiteBasicAuthPropertiesARMResource resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "StaticSiteBasicAuthPropertiesARMResourceProperties": { + "type": "object", + "description": "StaticSiteBasicAuthPropertiesARMResource resource specific properties", + "properties": { + "password": { + "type": "string", + "description": "The password for basic auth." + }, + "secretUrl": { + "type": "string", + "description": "Url to the secret in Key Vault." + }, + "applicableEnvironmentsMode": { + "type": "string", + "description": "State indicating if basic auth is enabled and for what environments it is active." + }, + "environments": { + "type": "array", + "description": "The list of enabled environments for Basic Auth if ApplicableEnvironmentsMode is set to SpecifiedEnvironments.", + "items": { + "type": "string" + } + }, + "secretState": { + "type": "string", + "description": "State indicating if basic auth has a secret and what type it is.", + "readOnly": true + } + }, + "required": [ + "applicableEnvironmentsMode" + ] + }, + "StaticSiteBasicAuthPropertiesCollection": { + "type": "object", + "description": "Collection of static site basic auth.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteBasicAuthPropertiesARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteBasicAuthPropertiesARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSiteBuildARMResource": { + "type": "object", + "description": "Static Site Build ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteBuildARMResourceProperties", + "description": "StaticSiteBuildARMResource resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "StaticSiteBuildARMResourceProperties": { + "type": "object", + "description": "StaticSiteBuildARMResource resource specific properties", + "properties": { + "buildId": { + "type": "string", + "description": "An identifier for the static site build.", + "readOnly": true + }, + "sourceBranch": { + "type": "string", + "description": "The source branch.", + "readOnly": true + }, + "pullRequestTitle": { + "type": "string", + "description": "The title of a pull request that a static site build is related to.", + "readOnly": true + }, + "hostname": { + "type": "string", + "description": "The hostname for a static site build.", + "readOnly": true + }, + "createdTimeUtc": { + "type": "string", + "format": "date-time", + "description": "When this build was created.", + "readOnly": true + }, + "lastUpdatedOn": { + "type": "string", + "format": "date-time", + "description": "When this build was updated.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/BuildStatus", + "description": "The status of the static site build.", + "readOnly": true + }, + "userProvidedFunctionApps": { + "type": "array", + "description": "User provided function apps registered with the static site build", + "items": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionApp" + }, + "readOnly": true + }, + "linkedBackends": { + "type": "array", + "description": "Backends linked to the static side build", + "items": { + "$ref": "#/definitions/StaticSiteLinkedBackend" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "databaseConnections": { + "type": "array", + "description": "Database connections for the static site build", + "items": { + "$ref": "#/definitions/DatabaseConnectionOverview" + }, + "readOnly": true, + "x-ms-identifiers": [ + "name" + ] + } + } + }, + "StaticSiteBuildCollection": { + "type": "object", + "description": "Collection of static site builds.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteBuildARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteBuildARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSiteBuildProperties": { + "type": "object", + "description": "Build properties for the static site.", + "properties": { + "appLocation": { + "type": "string", + "description": "The path to the app code within the repository." + }, + "apiLocation": { + "type": "string", + "description": "The path to the api code within the repository." + }, + "appArtifactLocation": { + "type": "string", + "description": "Deprecated: The path of the app artifacts after building (deprecated in favor of OutputLocation)" + }, + "outputLocation": { + "type": "string", + "description": "The output path of the app after building." + }, + "appBuildCommand": { + "type": "string", + "description": "A custom command to run during deployment of the static content application." + }, + "apiBuildCommand": { + "type": "string", + "description": "A custom command to run during deployment of the Azure Functions API application." + }, + "skipGithubActionWorkflowGeneration": { + "type": "boolean", + "description": "Skip Github Action workflow generation." + }, + "githubActionSecretNameOverride": { + "type": "string", + "description": "Github Action secret name override." + } + } + }, + "StaticSiteCollection": { + "type": "object", + "description": "Collection of static sites.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSiteCustomDomainOverviewARMResource": { + "type": "object", + "description": "Static Site Custom Domain Overview ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteCustomDomainOverviewARMResourceProperties", + "description": "StaticSiteCustomDomainOverviewARMResource resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "StaticSiteCustomDomainOverviewARMResourceProperties": { + "type": "object", + "description": "StaticSiteCustomDomainOverviewARMResource resource specific properties", + "properties": { + "domainName": { + "type": "string", + "description": "The domain name for the static site custom domain.", + "readOnly": true + }, + "createdOn": { + "type": "string", + "format": "date-time", + "description": "The date and time on which the custom domain was created for the static site.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/CustomDomainStatus", + "description": "The status of the custom domain", + "readOnly": true + }, + "validationToken": { + "type": "string", + "description": "The TXT record validation token", + "readOnly": true + }, + "errorMessage": { + "type": "string", + "readOnly": true + } + } + }, + "StaticSiteCustomDomainOverviewCollection": { + "type": "object", + "description": "Collection of static site custom domains.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteCustomDomainOverviewARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteCustomDomainOverviewARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSiteCustomDomainRequestPropertiesARMResource": { + "type": "object", + "description": "Static Site Custom Domain Request Properties ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteCustomDomainRequestPropertiesARMResourceProperties", + "description": "StaticSiteCustomDomainRequestPropertiesARMResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteCustomDomainRequestPropertiesARMResourceProperties": { + "type": "object", + "description": "StaticSiteCustomDomainRequestPropertiesARMResource resource specific properties", + "properties": { + "validationMethod": { + "type": "string", + "description": "Validation method for adding a custom domain", + "default": "cname-delegation" + } + } + }, + "StaticSiteDatabaseConnectionConfigurationFileOverview": { + "type": "object", + "description": "A database connection configuration file", + "properties": { + "fileName": { + "type": "string", + "description": "The name of the configuration file.", + "readOnly": true + }, + "contents": { + "type": "string", + "description": "The Base64 encoding of the file contents.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "The type of configuration file.", + "readOnly": true + } + } + }, + "StaticSiteFunctionOverviewARMResource": { + "type": "object", + "description": "Static Site Function Overview ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteFunctionOverviewARMResourceProperties", + "description": "StaticSiteFunctionOverviewARMResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteFunctionOverviewARMResourceProperties": { + "type": "object", + "description": "StaticSiteFunctionOverviewARMResource resource specific properties", + "properties": { + "functionName": { + "type": "string", + "description": "The name for the function", + "readOnly": true + }, + "triggerType": { + "$ref": "#/definitions/TriggerTypes", + "description": "The trigger type of the function", + "readOnly": true + } + } + }, + "StaticSiteFunctionOverviewCollection": { + "type": "object", + "description": "Collection of static site functions.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteFunctionOverviewARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteFunctionOverviewARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSiteLinkedBackend": { + "type": "object", + "description": "Static Site Linked Backend ARM resource.", + "properties": { + "backendResourceId": { + "type": "string", + "description": "The resource id of the backend linked to the static site" + }, + "region": { + "type": "string", + "description": "The region of the backend linked to the static site" + }, + "createdOn": { + "type": "string", + "format": "date-time", + "description": "The date and time on which the backend was linked to the static site.", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state of the linking process.", + "readOnly": true + } + } + }, + "StaticSiteLinkedBackendARMResource": { + "type": "object", + "description": "Static Site Linked Backend ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResourceProperties", + "description": "StaticSiteLinkedBackendARMResource resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "StaticSiteLinkedBackendARMResourceProperties": { + "type": "object", + "description": "StaticSiteLinkedBackendARMResource resource specific properties", + "properties": { + "backendResourceId": { + "type": "string", + "description": "The resource id of the backend linked to the static site" + }, + "region": { + "type": "string", + "description": "The region of the backend linked to the static site" + }, + "createdOn": { + "type": "string", + "format": "date-time", + "description": "The date and time on which the backend was linked to the static site.", + "readOnly": true + }, + "provisioningState": { + "type": "string", + "description": "The provisioning state of the linking process.", + "readOnly": true + } + } + }, + "StaticSiteLinkedBackendsCollection": { + "type": "object", + "description": "Collection of static site linked backends.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteLinkedBackendARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteLinkedBackendARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSitePatchResource": { + "type": "object", + "description": "ARM resource for a static site when patching", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSite", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteResetPropertiesARMResource": { + "type": "object", + "description": "Static Site Reset Properties ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteResetPropertiesARMResourceProperties", + "description": "StaticSiteResetPropertiesARMResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteResetPropertiesARMResourceProperties": { + "type": "object", + "description": "StaticSiteResetPropertiesARMResource resource specific properties", + "properties": { + "repositoryToken": { + "type": "string", + "description": "The token which proves admin privileges to the repository." + }, + "shouldUpdateRepository": { + "type": "boolean", + "description": "Determines whether the repository should be updated with the new properties." + } + } + }, + "StaticSiteTemplateOptions": { + "type": "object", + "description": "Template Options for the static site.", + "properties": { + "templateRepositoryUrl": { + "type": "string", + "description": "URL of the template repository. The newly generated repository will be based on this one." + }, + "owner": { + "type": "string", + "description": "Owner of the newly generated repository." + }, + "repositoryName": { + "type": "string", + "description": "Name of the newly generated repository." + }, + "description": { + "type": "string", + "description": "Description of the newly generated repository." + }, + "isPrivate": { + "type": "boolean", + "description": "Whether or not the newly generated repository is a private repository. Defaults to false (i.e. public)." + } + } + }, + "StaticSiteUserARMResource": { + "type": "object", + "description": "Static Site User ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteUserARMResourceProperties", + "description": "StaticSiteUserARMResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteUserARMResourceProperties": { + "type": "object", + "description": "StaticSiteUserARMResource resource specific properties", + "properties": { + "provider": { + "type": "string", + "description": "The identity provider for the static site user.", + "readOnly": true + }, + "userId": { + "type": "string", + "description": "The user id for the static site user.", + "readOnly": true + }, + "displayName": { + "type": "string", + "description": "The display name for the static site user.", + "readOnly": true + }, + "roles": { + "type": "string", + "description": "The roles for the static site user, in free-form string format" + } + } + }, + "StaticSiteUserCollection": { + "type": "object", + "description": "Collection of static site custom users.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteUserARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteUserARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSiteUserInvitationRequestResource": { + "type": "object", + "description": "Static sites user roles invitation resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteUserInvitationRequestResourceProperties", + "description": "StaticSiteUserInvitationRequestResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteUserInvitationRequestResourceProperties": { + "type": "object", + "description": "StaticSiteUserInvitationRequestResource resource specific properties", + "properties": { + "domain": { + "type": "string", + "description": "The domain name for the static site custom domain." + }, + "provider": { + "type": "string", + "description": "The identity provider for the static site user." + }, + "userDetails": { + "type": "string", + "description": "The user id for the static site user." + }, + "roles": { + "type": "string", + "description": "The roles for the static site user, in free-form string format" + }, + "numHoursToExpiration": { + "type": "integer", + "format": "int32", + "description": "The number of hours the sas token stays valid" + } + } + }, + "StaticSiteUserInvitationResponseResource": { + "type": "object", + "description": "Static sites user roles invitation link resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteUserInvitationResponseResourceProperties", + "description": "StaticSiteUserInvitationResponseResource resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteUserInvitationResponseResourceProperties": { + "type": "object", + "description": "StaticSiteUserInvitationResponseResource resource specific properties", + "properties": { + "expiresOn": { + "type": "string", + "format": "date-time", + "description": "The expiration time of the invitation", + "readOnly": true + }, + "invitationUrl": { + "type": "string", + "description": "The url for the invitation link", + "readOnly": true + } + } + }, + "StaticSiteUserProvidedFunctionApp": { + "type": "object", + "description": "A static site user provided function.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppProperties", + "description": "StaticSiteUserProvidedFunctionApp resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSiteUserProvidedFunctionAppARMResource": { + "type": "object", + "description": "Static Site User Provided Function App ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResourceProperties", + "description": "StaticSiteUserProvidedFunctionAppARMResource resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "StaticSiteUserProvidedFunctionAppARMResourceProperties": { + "type": "object", + "description": "StaticSiteUserProvidedFunctionAppARMResource resource specific properties", + "properties": { + "functionAppResourceId": { + "type": "string", + "description": "The resource id of the function app registered with the static site" + }, + "functionAppRegion": { + "type": "string", + "description": "The region of the function app registered with the static site" + }, + "createdOn": { + "type": "string", + "format": "date-time", + "description": "The date and time on which the function app was registered with the static site.", + "readOnly": true + } + } + }, + "StaticSiteUserProvidedFunctionAppProperties": { + "type": "object", + "description": "StaticSiteUserProvidedFunctionApp resource specific properties", + "properties": { + "functionAppResourceId": { + "type": "string", + "description": "The resource id of the function app registered with the static site" + }, + "functionAppRegion": { + "type": "string", + "description": "The region of the function app registered with the static site" + }, + "createdOn": { + "type": "string", + "format": "date-time", + "description": "The date and time on which the function app was registered with the static site.", + "readOnly": true + } + } + }, + "StaticSiteUserProvidedFunctionAppsCollection": { + "type": "object", + "description": "Collection of static site user provided function apps.", + "properties": { + "value": { + "type": "array", + "description": "The StaticSiteUserProvidedFunctionAppARMResource items on this page", + "items": { + "$ref": "#/definitions/StaticSiteUserProvidedFunctionAppARMResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "StaticSiteZipDeployment": { + "type": "object", + "description": "A static site zip deployment.", + "properties": { + "appZipUrl": { + "type": "string", + "description": "URL for the zipped app content" + }, + "apiZipUrl": { + "type": "string", + "description": "URL for the zipped api content" + }, + "deploymentTitle": { + "type": "string", + "description": "A title to label the deployment" + }, + "provider": { + "type": "string", + "description": "The provider submitting this deployment" + }, + "functionLanguage": { + "type": "string", + "description": "The language of the api content, if it exists" + } + } + }, + "StaticSiteZipDeploymentARMResource": { + "type": "object", + "description": "Static site zip deployment ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSiteZipDeployment", + "description": "Core resource properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSitesWorkflowPreview": { + "type": "object", + "description": "Preview for the Static Site Workflow to be generated", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSitesWorkflowPreviewProperties", + "description": "StaticSitesWorkflowPreview resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSitesWorkflowPreviewProperties": { + "type": "object", + "description": "StaticSitesWorkflowPreview resource specific properties", + "properties": { + "path": { + "type": "string", + "description": "The path for the workflow file to be generated", + "readOnly": true + }, + "contents": { + "type": "string", + "description": "The contents for the workflow file to be generated", + "readOnly": true + } + } + }, + "StaticSitesWorkflowPreviewRequest": { + "type": "object", + "description": "Request entity for previewing the Static Site workflow", + "properties": { + "properties": { + "$ref": "#/definitions/StaticSitesWorkflowPreviewRequestProperties", + "description": "StaticSitesWorkflowPreviewRequest resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StaticSitesWorkflowPreviewRequestProperties": { + "type": "object", + "description": "StaticSitesWorkflowPreviewRequest resource specific properties", + "properties": { + "repositoryUrl": { + "type": "string", + "description": "URL for the repository of the static site." + }, + "branch": { + "type": "string", + "description": "The target branch in the repository." + }, + "buildProperties": { + "$ref": "#/definitions/StaticSiteBuildProperties", + "description": "Build properties to configure on the repository." + } + } + }, + "Status": { + "type": "object", + "description": "Identify the status of the most severe insight generated by the detector.", + "properties": { + "message": { + "type": "string", + "description": "Descriptive message." + }, + "statusId": { + "$ref": "#/definitions/InsightStatus", + "description": "Level of the most severe insight generated by the detector." + } + } + }, + "StatusCodesBasedTrigger": { + "type": "object", + "description": "Trigger based on status code.", + "properties": { + "status": { + "type": "integer", + "format": "int32", + "description": "HTTP status code." + }, + "subStatus": { + "type": "integer", + "format": "int32", + "description": "Request Sub Status." + }, + "win32Status": { + "type": "integer", + "format": "int32", + "description": "Win32 error code." + }, + "count": { + "type": "integer", + "format": "int32", + "description": "Request Count." + }, + "timeInterval": { + "type": "string", + "description": "Time interval." + }, + "path": { + "type": "string", + "description": "Request Path" + } + } + }, + "StatusCodesRangeBasedTrigger": { + "type": "object", + "description": "Trigger based on range of status codes.", + "properties": { + "statusCodes": { + "type": "string", + "description": "HTTP status code." + }, + "path": { + "type": "string" + }, + "count": { + "type": "integer", + "format": "int32", + "description": "Request Count." + }, + "timeInterval": { + "type": "string", + "description": "Time interval." + } + } + }, + "StatusOptions": { + "type": "string", + "description": "App Service plan status.", + "enum": [ + "Ready", + "Pending", + "Creating" + ], + "x-ms-enum": { + "name": "StatusOptions", + "modelAsString": false + } + }, + "StorageMigrationOptions": { + "type": "object", + "description": "Options for app content migration.", + "properties": { + "properties": { + "$ref": "#/definitions/StorageMigrationOptionsProperties", + "description": "StorageMigrationOptions resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StorageMigrationOptionsProperties": { + "type": "object", + "description": "StorageMigrationOptions resource specific properties", + "properties": { + "azurefilesConnectionString": { + "type": "string", + "description": "AzureFiles connection string.", + "x-ms-mutability": [ + "create" + ] + }, + "azurefilesShare": { + "type": "string", + "description": "AzureFiles share.", + "x-ms-mutability": [ + "create" + ] + }, + "switchSiteAfterMigration": { + "type": "boolean", + "description": "trueif the app should be switched over; otherwise, false.", + "default": false, + "x-ms-mutability": [ + "create" + ] + }, + "blockWriteAccessToSite": { + "type": "boolean", + "description": "true if the app should be read only during copy operation; otherwise, false.", + "default": false, + "x-ms-mutability": [ + "create" + ] + } + }, + "required": [ + "azurefilesConnectionString", + "azurefilesShare" + ] + }, + "StorageMigrationResponse": { + "type": "object", + "description": "Response for a migration of app content request.", + "properties": { + "properties": { + "$ref": "#/definitions/StorageMigrationResponseProperties", + "description": "StorageMigrationResponse resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StorageMigrationResponseProperties": { + "type": "object", + "description": "StorageMigrationResponse resource specific properties", + "properties": { + "operationId": { + "type": "string", + "description": "When server starts the migration process, it will return an operation ID identifying that particular migration operation.", + "readOnly": true + } + } + }, + "StorageMount": { + "type": "object", + "description": "Server farm storage mount configuration.", + "properties": { + "name": { + "type": "string", + "description": "Name of the storage mount." + }, + "type": { + "$ref": "#/definitions/StorageMountType", + "description": "Type of the storage mount." + }, + "source": { + "type": "string", + "description": "Source of the fileshare/storage." + }, + "destinationPath": { + "type": "string", + "description": "Path on worker where storage will be mounted." + }, + "credentialsKeyVaultReference": { + "$ref": "#/definitions/KeyVaultReferenceWithStatus", + "description": "KV reference to the credentials to connect to the share." + } + } + }, + "StorageMountType": { + "type": "string", + "description": "Type of the storage mount.", + "enum": [ + "AzureFiles", + "LocalStorage", + "FileShare" + ], + "x-ms-enum": { + "name": "StorageMountType", + "modelAsString": true, + "values": [ + { + "name": "AzureFiles", + "value": "AzureFiles" + }, + { + "name": "LocalStorage", + "value": "LocalStorage" + }, + { + "name": "FileShare", + "value": "FileShare" + } + ] + } + }, + "StorageType": { + "type": "string", + "enum": [ + "LocalNode", + "NetworkFileSystem" + ], + "x-ms-enum": { + "name": "StorageType", + "modelAsString": false + } + }, + "StringDictionary": { + "type": "object", + "description": "String dictionary resource.", + "properties": { + "properties": { + "type": "object", + "description": "Settings.", + "additionalProperties": { + "type": "string" + }, + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "StringList": { + "type": "object", + "description": "String list resource.", + "properties": { + "properties": { + "type": "array", + "description": "List of string resources.", + "items": { + "type": "string" + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "SupportTopic": { + "type": "object", + "description": "Defines a unique Support Topic", + "properties": { + "id": { + "type": "string", + "description": "Support Topic Id", + "readOnly": true + }, + "pesId": { + "type": "string", + "description": "Unique resource Id", + "readOnly": true + } + } + }, + "SupportedTlsVersions": { + "type": "string", + "description": "MinTlsVersion: configures the minimum version of TLS required for SSL requests", + "enum": [ + "1.0", + "1.1", + "1.2", + "1.3" + ], + "x-ms-enum": { + "name": "SupportedTlsVersions", + "modelAsString": true, + "values": [ + { + "name": "1.0", + "value": "1.0" + }, + { + "name": "1.1", + "value": "1.1" + }, + { + "name": "1.2", + "value": "1.2" + }, + { + "name": "1.3", + "value": "1.3" + } + ] + } + }, + "SwiftVirtualNetwork": { + "type": "object", + "description": "Swift Virtual Network Contract. This is used to enable the new Swift way of doing virtual network integration.", + "properties": { + "properties": { + "$ref": "#/definitions/SwiftVirtualNetworkProperties", + "description": "SwiftVirtualNetwork resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "SwiftVirtualNetworkProperties": { + "type": "object", + "description": "SwiftVirtualNetwork resource specific properties", + "properties": { + "subnetResourceId": { + "type": "string", + "description": "The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first." + }, + "swiftSupported": { + "type": "boolean", + "description": "A flag that specifies if the scale unit this Web App is on supports Swift integration." + } + } + }, + "TlsCipherSuites": { + "type": "string", + "description": "The minimum strength TLS cipher suite allowed for an application", + "enum": [ + "TLS_AES_256_GCM_SHA384", + "TLS_AES_128_GCM_SHA256", + "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256", + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", + "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", + "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384", + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256", + "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA", + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", + "TLS_RSA_WITH_AES_256_GCM_SHA384", + "TLS_RSA_WITH_AES_128_GCM_SHA256", + "TLS_RSA_WITH_AES_256_CBC_SHA256", + "TLS_RSA_WITH_AES_128_CBC_SHA256", + "TLS_RSA_WITH_AES_256_CBC_SHA", + "TLS_RSA_WITH_AES_128_CBC_SHA" + ], + "x-ms-enum": { + "name": "TlsCipherSuites", + "modelAsString": true, + "values": [ + { + "name": "TLS_AES_256_GCM_SHA384", + "value": "TLS_AES_256_GCM_SHA384" + }, + { + "name": "TLS_AES_128_GCM_SHA256", + "value": "TLS_AES_128_GCM_SHA256" + }, + { + "name": "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", + "value": "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384" + }, + { + "name": "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256", + "value": "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256" + }, + { + "name": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", + "value": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256" + }, + { + "name": "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", + "value": "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384" + }, + { + "name": "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", + "value": "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256" + }, + { + "name": "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384", + "value": "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384" + }, + { + "name": "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256", + "value": "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256" + }, + { + "name": "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA", + "value": "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA" + }, + { + "name": "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", + "value": "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA" + }, + { + "name": "TLS_RSA_WITH_AES_256_GCM_SHA384", + "value": "TLS_RSA_WITH_AES_256_GCM_SHA384" + }, + { + "name": "TLS_RSA_WITH_AES_128_GCM_SHA256", + "value": "TLS_RSA_WITH_AES_128_GCM_SHA256" + }, + { + "name": "TLS_RSA_WITH_AES_256_CBC_SHA256", + "value": "TLS_RSA_WITH_AES_256_CBC_SHA256" + }, + { + "name": "TLS_RSA_WITH_AES_128_CBC_SHA256", + "value": "TLS_RSA_WITH_AES_128_CBC_SHA256" + }, + { + "name": "TLS_RSA_WITH_AES_256_CBC_SHA", + "value": "TLS_RSA_WITH_AES_256_CBC_SHA" + }, + { + "name": "TLS_RSA_WITH_AES_128_CBC_SHA", + "value": "TLS_RSA_WITH_AES_128_CBC_SHA" + } + ] + } + }, + "TokenStore": { + "type": "object", + "description": "The configuration settings of the token store.", + "properties": { + "enabled": { + "type": "boolean", + "description": "true to durably store platform-specific security tokens that are obtained during login flows; otherwise, false.\nThe default is false." + }, + "tokenRefreshExtensionHours": { + "type": "number", + "format": "double", + "description": "The number of hours after session token expiration that a session token can be used to\ncall the token refresh API. The default is 72 hours." + }, + "fileSystem": { + "$ref": "#/definitions/FileSystemTokenStore", + "description": "The configuration settings of the storage of the tokens if a file system is used." + }, + "azureBlobStorage": { + "$ref": "#/definitions/BlobStorageTokenStore", + "description": "The configuration settings of the storage of the tokens if blob storage is used." + } + } + }, + "TriggerTypes": { + "type": "string", + "description": "The trigger type of the function", + "enum": [ + "HttpTrigger", + "Unknown" + ], + "x-ms-enum": { + "name": "TriggerTypes", + "modelAsString": true, + "values": [ + { + "name": "HttpTrigger", + "value": "HttpTrigger" + }, + { + "name": "Unknown", + "value": "Unknown" + } + ] + } + }, + "TriggeredJobHistory": { + "type": "object", + "description": "Triggered Web Job History. List of Triggered Web Job Run Information elements.", + "properties": { + "properties": { + "$ref": "#/definitions/TriggeredJobHistoryProperties", + "description": "TriggeredJobHistory resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "TriggeredJobHistoryCollection": { + "type": "object", + "description": "Collection of Kudu continuous web job information elements.", + "properties": { + "value": { + "type": "array", + "description": "The TriggeredJobHistory items on this page", + "items": { + "$ref": "#/definitions/TriggeredJobHistory" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "TriggeredJobHistoryProperties": { + "type": "object", + "description": "TriggeredJobHistory resource specific properties", + "properties": { + "runs": { + "type": "array", + "description": "List of triggered web job runs.", + "items": { + "$ref": "#/definitions/TriggeredJobRun" + }, + "x-ms-identifiers": [ + "web_job_id" + ] + } + } + }, + "TriggeredJobRun": { + "type": "object", + "description": "Triggered Web Job Run Information.", + "properties": { + "web_job_id": { + "type": "string", + "description": "Job ID.", + "x-ms-client-name": "webJobId" + }, + "web_job_name": { + "type": "string", + "description": "Job name.", + "x-ms-client-name": "webJobName" + }, + "status": { + "$ref": "#/definitions/TriggeredWebJobStatus", + "description": "Job status." + }, + "start_time": { + "type": "string", + "format": "date-time", + "description": "Start time.", + "x-ms-client-name": "startTime" + }, + "end_time": { + "type": "string", + "format": "date-time", + "description": "End time.", + "x-ms-client-name": "endTime" + }, + "duration": { + "type": "string", + "description": "Job duration." + }, + "output_url": { + "type": "string", + "description": "Output URL.", + "x-ms-client-name": "outputUrl" + }, + "error_url": { + "type": "string", + "description": "Error URL.", + "x-ms-client-name": "errorUrl" + }, + "url": { + "type": "string", + "description": "Job URL." + }, + "job_name": { + "type": "string", + "description": "Job name.", + "x-ms-client-name": "jobName" + }, + "trigger": { + "type": "string", + "description": "Job trigger." + } + } + }, + "TriggeredWebJob": { + "type": "object", + "description": "Triggered Web Job Information.", + "properties": { + "properties": { + "$ref": "#/definitions/TriggeredWebJobProperties", + "description": "TriggeredWebJob resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "TriggeredWebJobCollection": { + "type": "object", + "description": "Collection of Kudu continuous web job information elements.", + "properties": { + "value": { + "type": "array", + "description": "The TriggeredWebJob items on this page", + "items": { + "$ref": "#/definitions/TriggeredWebJob" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "TriggeredWebJobProperties": { + "type": "object", + "description": "TriggeredWebJob resource specific properties", + "properties": { + "latest_run": { + "$ref": "#/definitions/TriggeredJobRun", + "description": "Latest job run information.", + "x-ms-client-name": "latestRun" + }, + "history_url": { + "type": "string", + "description": "History URL.", + "x-ms-client-name": "historyUrl" + }, + "scheduler_logs_url": { + "type": "string", + "description": "Scheduler Logs URL.", + "x-ms-client-name": "schedulerLogsUrl" + }, + "run_command": { + "type": "string", + "description": "Run command.", + "x-ms-client-name": "runCommand" + }, + "url": { + "type": "string", + "description": "Job URL." + }, + "extra_info_url": { + "type": "string", + "description": "Extra Info URL.", + "x-ms-client-name": "extraInfoUrl" + }, + "web_job_type": { + "$ref": "#/definitions/WebJobType", + "description": "Job type.", + "x-ms-client-name": "webJobType" + }, + "error": { + "type": "string", + "description": "Error information." + }, + "using_sdk": { + "type": "boolean", + "description": "Using SDK?", + "x-ms-client-name": "usingSdk" + }, + "publicNetworkAccess": { + "type": "string", + "description": "Property to allow or block all public traffic. Allowed Values: 'Enabled', 'Disabled' or an empty string." + }, + "storageAccountRequired": { + "type": "boolean", + "description": "Checks if Customer provided storage account is required" + }, + "settings": { + "type": "object", + "description": "Job settings.", + "additionalProperties": {} + } + } + }, + "TriggeredWebJobStatus": { + "type": "string", + "description": "Job status.", + "enum": [ + "Success", + "Failed", + "Error" + ], + "x-ms-enum": { + "name": "TriggeredWebJobStatus", + "modelAsString": false + } + }, + "Twitter": { + "type": "object", + "description": "The configuration settings of the Twitter provider.", + "properties": { + "enabled": { + "type": "boolean", + "description": "false if the Twitter provider should not be enabled despite the set registration; otherwise, true." + }, + "registration": { + "$ref": "#/definitions/TwitterRegistration", + "description": "The configuration settings of the app registration for the Twitter provider." + } + } + }, + "TwitterRegistration": { + "type": "object", + "description": "The configuration settings of the app registration for the Twitter provider.", + "properties": { + "consumerKey": { + "type": "string", + "description": "The OAuth 1.0a consumer key of the Twitter application used for sign-in.\nThis setting is required for enabling Twitter Sign-In.\nTwitter Sign-In documentation: https://dev.twitter.com/web/sign-in" + }, + "consumerSecretSettingName": { + "type": "string", + "description": "The app setting name that contains the OAuth 1.0a consumer secret of the Twitter\napplication used for sign-in." + } + } + }, + "UnauthenticatedClientAction": { + "type": "string", + "description": "The action to take when an unauthenticated client attempts to access the app.", + "enum": [ + "RedirectToLoginPage", + "AllowAnonymous" + ], + "x-ms-enum": { + "name": "UnauthenticatedClientAction", + "modelAsString": false + } + }, + "UnauthenticatedClientActionV2": { + "type": "string", + "description": "The action to take when an unauthenticated client attempts to access the app.", + "enum": [ + "RedirectToLoginPage", + "AllowAnonymous", + "Return401", + "Return403" + ], + "x-ms-enum": { + "name": "UnauthenticatedClientActionV2", + "modelAsString": false + } + }, + "UpgradeAvailability": { + "type": "string", + "description": "Whether an upgrade is available for this App Service Environment.", + "enum": [ + "None", + "Ready" + ], + "x-ms-enum": { + "name": "UpgradeAvailability", + "modelAsString": true, + "values": [ + { + "name": "None", + "value": "None", + "description": "No upgrade is currently available for this App Service Environment" + }, + { + "name": "Ready", + "value": "Ready", + "description": "An upgrade is ready to be manually initiated on this App Service Environment" + } + ] + } + }, + "Usage": { + "type": "object", + "description": "Usage of the quota resource.", + "properties": { + "properties": { + "$ref": "#/definitions/UsageProperties", + "description": "Usage resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "UsageCollection": { + "type": "object", + "description": "Collection of usages.", + "properties": { + "value": { + "type": "array", + "description": "The Usage items on this page", + "items": { + "$ref": "#/definitions/Usage" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "UsageProperties": { + "type": "object", + "description": "Usage resource specific properties", + "properties": { + "displayName": { + "type": "string", + "description": "Friendly name shown in the UI.", + "readOnly": true + }, + "resourceName": { + "type": "string", + "description": "Name of the quota resource.", + "readOnly": true + }, + "unit": { + "type": "string", + "description": "Units of measurement for the quota resource.", + "readOnly": true + }, + "currentValue": { + "type": "integer", + "format": "int64", + "description": "The current value of the resource counter.", + "readOnly": true + }, + "limit": { + "type": "integer", + "format": "int64", + "description": "The resource limit.", + "readOnly": true + }, + "nextResetTime": { + "type": "string", + "format": "date-time", + "description": "Next reset time for the resource counter.", + "readOnly": true + }, + "computeMode": { + "$ref": "#/definitions/ComputeModeOptions", + "description": "Compute mode used for this usage.", + "readOnly": true + }, + "siteMode": { + "type": "string", + "description": "Site mode used for this usage.", + "readOnly": true + } + } + }, + "UsageState": { + "type": "string", + "description": "State indicating whether the app has exceeded its quota usage. Read-only.", + "enum": [ + "Normal", + "Exceeded" + ], + "x-ms-enum": { + "name": "UsageState", + "modelAsString": false + } + }, + "User": { + "type": "object", + "description": "User credentials used for publishing activity.", + "properties": { + "properties": { + "$ref": "#/definitions/UserProperties", + "description": "User resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "UserAssignedIdentity": { + "type": "object", + "description": "User Assigned identity.", + "properties": { + "principalId": { + "type": "string", + "description": "Principal Id of user assigned identity", + "readOnly": true + }, + "clientId": { + "type": "string", + "description": "Client Id of user assigned identity", + "readOnly": true + } + } + }, + "UserProperties": { + "type": "object", + "description": "User resource specific properties", + "properties": { + "publishingUserName": { + "type": "string", + "description": "Username used for publishing." + }, + "publishingPassword": { + "type": "string", + "format": "password", + "description": "Password used for publishing.", + "x-ms-secret": true + }, + "publishingPasswordHash": { + "type": "string", + "format": "password", + "description": "Password hash used for publishing.", + "x-ms-secret": true + }, + "publishingPasswordHashSalt": { + "type": "string", + "format": "password", + "description": "Password hash salt used for publishing.", + "x-ms-secret": true + }, + "scmUri": { + "type": "string", + "description": "Url of SCM site." + } + }, + "required": [ + "publishingUserName" + ] + }, + "ValidateProperties": { + "type": "object", + "description": "App properties used for validation.", + "properties": { + "serverFarmId": { + "type": "string", + "description": "ARM resource ID of an App Service plan that would host the app." + }, + "skuName": { + "type": "string", + "description": "Name of the target SKU for the App Service plan." + }, + "needLinuxWorkers": { + "type": "boolean", + "description": "true if App Service plan is for Linux workers; otherwise, false." + }, + "isSpot": { + "type": "boolean", + "description": "true if App Service plan is for Spot instances; otherwise, false." + }, + "capacity": { + "type": "integer", + "format": "int32", + "description": "Target capacity of the App Service plan (number of VMs).", + "minimum": 1 + }, + "hostingEnvironment": { + "type": "string", + "description": "Name of App Service Environment where app or App Service plan should be created." + }, + "isXenon": { + "type": "boolean", + "description": "true if App Service plan is running as a windows container" + }, + "containerRegistryBaseUrl": { + "type": "string", + "description": "Base URL of the container registry" + }, + "containerRegistryUsername": { + "type": "string", + "description": "Username for to access the container registry" + }, + "containerRegistryPassword": { + "type": "string", + "description": "Password for to access the container registry" + }, + "containerImageRepository": { + "type": "string", + "description": "Repository name (image name)" + }, + "containerImageTag": { + "type": "string", + "description": "Image tag" + }, + "containerImagePlatform": { + "type": "string", + "description": "Platform (windows or linux)" + }, + "appServiceEnvironment": { + "$ref": "#/definitions/AppServiceEnvironment", + "description": "App Service Environment Properties" + } + } + }, + "ValidateRequest": { + "type": "object", + "description": "Resource validation request content.", + "properties": { + "name": { + "type": "string", + "description": "Resource name to verify." + }, + "type": { + "$ref": "#/definitions/ValidateResourceTypes", + "description": "Resource type used for verification." + }, + "location": { + "type": "string", + "description": "Expected location of the resource." + }, + "properties": { + "$ref": "#/definitions/ValidateProperties", + "description": "Properties of the resource to validate.", + "x-ms-client-flatten": true + } + }, + "required": [ + "name", + "type", + "location", + "properties" + ] + }, + "ValidateResourceTypes": { + "type": "string", + "description": "Resource type used for verification.", + "enum": [ + "ServerFarm", + "Site", + "Microsoft.Web/hostingEnvironments" + ], + "x-ms-enum": { + "name": "ValidateResourceTypes", + "modelAsString": true, + "values": [ + { + "name": "ServerFarm", + "value": "ServerFarm" + }, + { + "name": "Site", + "value": "Site" + }, + { + "name": "Microsoft.Web/hostingEnvironments", + "value": "Microsoft.Web/hostingEnvironments" + } + ] + } + }, + "ValidateResponse": { + "type": "object", + "description": "Describes the result of resource validation.", + "properties": { + "status": { + "type": "string", + "description": "Result of validation." + }, + "error": { + "$ref": "#/definitions/ValidateResponseError", + "description": "Error details for the case when validation fails." + } + } + }, + "ValidateResponseError": { + "type": "object", + "description": "Error details for when validation fails.", + "properties": { + "code": { + "type": "string", + "description": "Validation error code." + }, + "message": { + "type": "string", + "description": "Validation error message." + } + } + }, + "VirtualApplication": { + "type": "object", + "description": "Virtual application in an app.", + "properties": { + "virtualPath": { + "type": "string", + "description": "Virtual path." + }, + "physicalPath": { + "type": "string", + "description": "Physical path." + }, + "preloadEnabled": { + "type": "boolean", + "description": "true if preloading is enabled; otherwise, false." + }, + "virtualDirectories": { + "type": "array", + "description": "Virtual directories for virtual application.", + "items": { + "$ref": "#/definitions/VirtualDirectory" + }, + "x-ms-identifiers": [ + "virtualPath" + ] + } + } + }, + "VirtualDirectory": { + "type": "object", + "description": "Directory for virtual application.", + "properties": { + "virtualPath": { + "type": "string", + "description": "Path to virtual application." + }, + "physicalPath": { + "type": "string", + "description": "Physical path." + } + } + }, + "VirtualIPMapping": { + "type": "object", + "description": "Virtual IP mapping.", + "properties": { + "virtualIP": { + "type": "string", + "description": "Virtual IP address." + }, + "internalHttpPort": { + "type": "integer", + "format": "int32", + "description": "Internal HTTP port." + }, + "internalHttpsPort": { + "type": "integer", + "format": "int32", + "description": "Internal HTTPS port." + }, + "inUse": { + "type": "boolean", + "description": "Is virtual IP mapping in use." + }, + "serviceName": { + "type": "string", + "description": "name of the service that virtual IP is assigned to" + } + } + }, + "VirtualNetworkProfile": { + "type": "object", + "description": "Specification for using a Virtual Network.", + "properties": { + "id": { + "type": "string", + "description": "Resource id of the Virtual Network." + }, + "name": { + "type": "string", + "description": "Name of the Virtual Network (read-only).", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Resource type of the Virtual Network (read-only).", + "readOnly": true + }, + "subnet": { + "type": "string", + "description": "Subnet within the Virtual Network." + } + }, + "required": [ + "id" + ] + }, + "VnetGateway": { + "type": "object", + "description": "The Virtual Network gateway contract. This is used to give the Virtual Network gateway access to the VPN package.", + "properties": { + "properties": { + "$ref": "#/definitions/VnetGatewayProperties", + "description": "VnetGateway resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "VnetGatewayProperties": { + "type": "object", + "description": "VnetGateway resource specific properties", + "properties": { + "vnetName": { + "type": "string", + "description": "The Virtual Network name.", + "x-ms-mutability": [ + "read", + "create" + ] + }, + "vpnPackageUri": { + "type": "string", + "description": "The URI where the VPN package can be downloaded.", + "x-ms-mutability": [ + "update", + "create" + ] + } + }, + "required": [ + "vpnPackageUri" + ] + }, + "VnetInfo": { + "type": "object", + "description": "Virtual Network information contract.", + "properties": { + "vnetResourceId": { + "type": "string", + "description": "The Virtual Network's resource ID." + }, + "certThumbprint": { + "type": "string", + "description": "The client certificate thumbprint.", + "readOnly": true + }, + "certBlob": { + "type": "string", + "description": "A certificate file (.cer) blob containing the public key of the private key used to authenticate a \\nPoint-To-Site VPN connection." + }, + "routes": { + "type": "array", + "description": "The routes that this Virtual Network connection uses.", + "items": { + "$ref": "#/definitions/VnetRoute" + }, + "readOnly": true + }, + "resyncRequired": { + "type": "boolean", + "description": "true if a resync is required; otherwise, false.", + "readOnly": true + }, + "dnsServers": { + "type": "string", + "description": "DNS servers to be used by this Virtual Network. This should be a comma-separated list of IP addresses." + }, + "isSwift": { + "type": "boolean", + "description": "Flag that is used to denote if this is VNET injection" + } + } + }, + "VnetInfoResource": { + "type": "object", + "description": "Virtual Network information ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/VnetInfo", + "description": "Core resource properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "VnetParameters": { + "type": "object", + "description": "The required set of inputs to validate a VNET", + "properties": { + "properties": { + "$ref": "#/definitions/VnetParametersProperties", + "description": "VnetParameters resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "VnetParametersProperties": { + "type": "object", + "description": "VnetParameters resource specific properties", + "properties": { + "vnetResourceGroup": { + "type": "string", + "description": "The Resource Group of the VNET to be validated" + }, + "vnetName": { + "type": "string", + "description": "The name of the VNET to be validated" + }, + "vnetSubnetName": { + "type": "string", + "description": "The subnet name to be validated" + }, + "subnetResourceId": { + "type": "string", + "description": "The ARM Resource ID of the subnet to validate" + } + } + }, + "VnetRoute": { + "type": "object", + "description": "Virtual Network route contract used to pass routing information for a Virtual Network.", + "properties": { + "properties": { + "$ref": "#/definitions/VnetRouteProperties", + "description": "VnetRoute resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "VnetRouteProperties": { + "type": "object", + "description": "VnetRoute resource specific properties", + "properties": { + "startAddress": { + "type": "string", + "description": "The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified." + }, + "endAddress": { + "type": "string", + "description": "The ending address for this route. If the start address is specified in CIDR notation, this must be omitted." + }, + "routeType": { + "$ref": "#/definitions/RouteType", + "description": "The type of route this is:\nDEFAULT - By default, every app has routes to the local address ranges specified by RFC1918\nINHERITED - Routes inherited from the real Virtual Network routes\nSTATIC - Static route set on the app only\n\nThese values will be used for syncing an app's routes with those from a Virtual Network." + } + } + }, + "VnetValidationFailureDetails": { + "type": "object", + "description": "A class that describes the reason for a validation failure.", + "properties": { + "properties": { + "$ref": "#/definitions/VnetValidationFailureDetailsProperties", + "description": "VnetValidationFailureDetails resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "VnetValidationFailureDetailsProperties": { + "type": "object", + "description": "VnetValidationFailureDetails resource specific properties", + "properties": { + "message": { + "type": "string", + "description": "Text describing the validation outcome." + }, + "failed": { + "type": "boolean", + "description": "A flag describing whether or not validation failed." + }, + "failedTests": { + "type": "array", + "description": "A list of tests that failed in the validation.", + "items": { + "$ref": "#/definitions/VnetValidationTestFailure" + } + }, + "warnings": { + "type": "array", + "description": "A list of warnings generated during validation.", + "items": { + "$ref": "#/definitions/VnetValidationTestFailure" + } + } + } + }, + "VnetValidationTestFailure": { + "type": "object", + "description": "A class that describes a test that failed during NSG and UDR validation.", + "properties": { + "properties": { + "$ref": "#/definitions/VnetValidationTestFailureProperties", + "description": "VnetValidationTestFailure resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "VnetValidationTestFailureProperties": { + "type": "object", + "description": "VnetValidationTestFailure resource specific properties", + "properties": { + "testName": { + "type": "string", + "description": "The name of the test that failed." + }, + "details": { + "type": "string", + "description": "The details of what caused the failure, e.g. the blocking rule name, etc." + } + } + }, + "VolumeMount": { + "type": "object", + "properties": { + "volumeSubPath": { + "type": "string", + "description": "Sub path in the volume where volume is mounted from." + }, + "containerMountPath": { + "type": "string", + "description": "Target path on the container where volume is mounted on" + }, + "data": { + "type": "string", + "description": "Config Data to be mounted on the volume" + }, + "readOnly": { + "type": "boolean", + "description": "Boolean to specify if the mount is read only on the container" + } + }, + "required": [ + "volumeSubPath", + "containerMountPath" + ] + }, + "WebAppCollection": { + "type": "object", + "description": "Collection of App Service apps.", + "properties": { + "value": { + "type": "array", + "description": "The Site items on this page", + "items": { + "$ref": "#/definitions/Site" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WebAppInstanceStatusCollection": { + "type": "object", + "description": "Collection of app instances.", + "properties": { + "value": { + "type": "array", + "description": "The WebSiteInstanceStatus items on this page", + "items": { + "$ref": "#/definitions/WebSiteInstanceStatus" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WebAppMajorVersion": { + "type": "object", + "description": "Web App stack major version.", + "properties": { + "displayText": { + "type": "string", + "description": "Web App stack major version (display only).", + "readOnly": true + }, + "value": { + "type": "string", + "description": "Web App stack major version name.", + "readOnly": true + }, + "minorVersions": { + "type": "array", + "description": "Minor versions associated with the major version.", + "items": { + "$ref": "#/definitions/WebAppMinorVersion" + }, + "readOnly": true, + "x-ms-identifiers": [ + "value" + ] + } + } + }, + "WebAppMinorVersion": { + "type": "object", + "description": "Web App stack minor version.", + "properties": { + "displayText": { + "type": "string", + "description": "Web App stack minor version (display only).", + "readOnly": true + }, + "value": { + "type": "string", + "description": "Web App stack major version name.", + "readOnly": true + }, + "stackSettings": { + "$ref": "#/definitions/WebAppRuntimes", + "description": "Settings associated with the minor version.", + "readOnly": true + } + } + }, + "WebAppRuntimeSettings": { + "type": "object", + "description": "Web App runtime settings.", + "properties": { + "runtimeVersion": { + "type": "string", + "description": "Web App stack minor version (runtime only).", + "readOnly": true + }, + "remoteDebuggingSupported": { + "type": "boolean", + "description": "true if remote debugging is supported for the stack; otherwise, false.", + "readOnly": true + }, + "appInsightsSettings": { + "$ref": "#/definitions/AppInsightsWebAppStackSettings", + "description": "Application Insights settings associated with the minor version.", + "readOnly": true + }, + "gitHubActionSettings": { + "$ref": "#/definitions/GitHubActionWebAppStackSettings", + "description": "GitHub Actions settings associated with the minor version.", + "readOnly": true + }, + "isPreview": { + "type": "boolean", + "description": "true if the stack is in preview; otherwise, false.", + "readOnly": true + }, + "isDeprecated": { + "type": "boolean", + "description": "true if the stack is deprecated; otherwise, false.", + "readOnly": true + }, + "isHidden": { + "type": "boolean", + "description": "true if the stack should be hidden; otherwise, false.", + "readOnly": true + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "End-of-life date for the minor version.", + "readOnly": true + }, + "isAutoUpdate": { + "type": "boolean", + "description": "true if the stack version is auto-updated; otherwise, false.", + "readOnly": true + }, + "isEarlyAccess": { + "type": "boolean", + "description": "true if the minor version is early-access; otherwise, false.", + "readOnly": true + } + } + }, + "WebAppRuntimes": { + "type": "object", + "description": "Web App stack runtimes.", + "properties": { + "linuxRuntimeSettings": { + "$ref": "#/definitions/WebAppRuntimeSettings", + "description": "Linux-specific settings associated with the minor version.", + "readOnly": true + }, + "windowsRuntimeSettings": { + "$ref": "#/definitions/WebAppRuntimeSettings", + "description": "Windows-specific settings associated with the minor version.", + "readOnly": true + }, + "linuxContainerSettings": { + "$ref": "#/definitions/LinuxJavaContainerSettings", + "description": "Linux-specific settings associated with the Java container minor version.", + "readOnly": true + }, + "windowsContainerSettings": { + "$ref": "#/definitions/WindowsJavaContainerSettings", + "description": "Windows-specific settings associated with the Java container minor version.", + "readOnly": true + } + } + }, + "WebAppStack": { + "type": "object", + "description": "Web App stack.", + "properties": { + "location": { + "type": "string", + "description": "Web App stack location.", + "readOnly": true + }, + "properties": { + "$ref": "#/definitions/WebAppStackProperties", + "description": "WebAppStack resource specific properties", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/ProxyOnlyResource" + } + ] + }, + "WebAppStackCollection": { + "type": "object", + "description": "Collection of Web app Stacks", + "properties": { + "value": { + "type": "array", + "description": "The WebAppStack items on this page", + "items": { + "$ref": "#/definitions/WebAppStack" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WebAppStackProperties": { + "type": "object", + "description": "WebAppStack resource specific properties", + "properties": { + "displayText": { + "type": "string", + "description": "Web App stack (display only).", + "readOnly": true + }, + "value": { + "type": "string", + "description": "Web App stack name.", + "readOnly": true + }, + "majorVersions": { + "type": "array", + "description": "List of major versions available.", + "items": { + "$ref": "#/definitions/WebAppMajorVersion" + }, + "readOnly": true, + "x-ms-identifiers": [ + "value" + ] + }, + "preferredOs": { + "$ref": "#/definitions/StackPreferredOs", + "description": "Web App stack preferred OS.", + "readOnly": true + } + } + }, + "WebJob": { + "type": "object", + "description": "Web Job Information.", + "properties": { + "properties": { + "$ref": "#/definitions/WebJobProperties", + "description": "WebJob resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WebJobCollection": { + "type": "object", + "description": "Collection of Kudu web job information elements.", + "properties": { + "value": { + "type": "array", + "description": "The WebJob items on this page", + "items": { + "$ref": "#/definitions/WebJob" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WebJobProperties": { + "type": "object", + "description": "WebJob resource specific properties", + "properties": { + "run_command": { + "type": "string", + "description": "Run command.", + "x-ms-client-name": "runCommand" + }, + "url": { + "type": "string", + "description": "Job URL." + }, + "extra_info_url": { + "type": "string", + "description": "Extra Info URL.", + "x-ms-client-name": "extraInfoUrl" + }, + "web_job_type": { + "$ref": "#/definitions/WebJobType", + "description": "Job type.", + "x-ms-client-name": "webJobType" + }, + "error": { + "type": "string", + "description": "Error information." + }, + "using_sdk": { + "type": "boolean", + "description": "Using SDK?", + "x-ms-client-name": "usingSdk" + }, + "settings": { + "type": "object", + "description": "Job settings.", + "additionalProperties": {} + } + } + }, + "WebJobType": { + "type": "string", + "description": "Job type.", + "enum": [ + "Continuous", + "Triggered" + ], + "x-ms-enum": { + "name": "WebJobType", + "modelAsString": false + } + }, + "WebSiteInstanceStatus": { + "type": "object", + "description": "Concrete proxy resource types can be created by aliasing this type using a specific property type.", + "properties": { + "properties": { + "$ref": "#/definitions/WebSiteInstanceStatusProperties", + "description": "WebSiteInstanceStatus resource specific properties", + "x-ms-client-flatten": true + }, + "kind": { + "type": "string", + "description": "Kind of resource." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WebSiteInstanceStatusProperties": { + "type": "object", + "description": "WebSiteInstanceStatus resource specific properties", + "properties": { + "state": { + "$ref": "#/definitions/SiteRuntimeState" + }, + "statusUrl": { + "type": "string", + "description": "Link to the GetStatusApi in Kudu" + }, + "detectorUrl": { + "type": "string", + "description": "Link to the Diagnose and Solve Portal" + }, + "consoleUrl": { + "type": "string", + "description": "Link to the console to web app instance" + }, + "healthCheckUrl": { + "type": "string", + "description": "Link to the console to web app instance" + }, + "containers": { + "type": "object", + "description": "Dictionary of ", + "additionalProperties": { + "$ref": "#/definitions/ContainerInfo" + } + }, + "physicalZone": { + "type": "string", + "description": "The physical zone that the instance is in" + } + } + }, + "WindowsJavaContainerSettings": { + "type": "object", + "description": "Windows Java Container settings.", + "properties": { + "javaContainer": { + "type": "string", + "description": "Java container (runtime only).", + "readOnly": true + }, + "javaContainerVersion": { + "type": "string", + "description": "Java container version (runtime only).", + "readOnly": true + }, + "isPreview": { + "type": "boolean", + "description": "true if the stack is in preview; otherwise, false.", + "readOnly": true + }, + "isDeprecated": { + "type": "boolean", + "description": "true if the stack is deprecated; otherwise, false.", + "readOnly": true + }, + "isHidden": { + "type": "boolean", + "description": "true if the stack should be hidden; otherwise, false.", + "readOnly": true + }, + "endOfLifeDate": { + "type": "string", + "format": "date-time", + "description": "End-of-life date for the minor version.", + "readOnly": true + }, + "isAutoUpdate": { + "type": "boolean", + "description": "true if the stack version is auto-updated; otherwise, false.", + "readOnly": true + }, + "isEarlyAccess": { + "type": "boolean", + "description": "true if the minor version is early-access; otherwise, false.", + "readOnly": true + } + } + }, + "WorkerPool": { + "type": "object", + "description": "Worker pool of an App Service Environment.", + "properties": { + "workerSizeId": { + "type": "integer", + "format": "int32", + "description": "Worker size ID for referencing this worker pool." + }, + "computeMode": { + "$ref": "#/definitions/ComputeModeOptions", + "description": "Shared or dedicated app hosting." + }, + "workerSize": { + "type": "string", + "description": "VM size of the worker pool instances." + }, + "workerCount": { + "type": "integer", + "format": "int32", + "description": "Number of instances in the worker pool." + }, + "instanceNames": { + "type": "array", + "description": "Names of all instances in the worker pool (read only).", + "items": { + "type": "string" + }, + "readOnly": true + } + } + }, + "WorkerPoolCollection": { + "type": "object", + "description": "Collection of worker pools.", + "properties": { + "value": { + "type": "array", + "description": "The WorkerPoolResource items on this page", + "items": { + "$ref": "#/definitions/WorkerPoolResource" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkerPoolResource": { + "type": "object", + "description": "Worker pool of an App Service Environment ARM resource.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkerPool", + "description": "Core resource properties", + "x-ms-client-flatten": true + }, + "sku": { + "$ref": "#/definitions/SkuDescription", + "description": "Description of a SKU for a scalable resource." + }, + "kind": { + "type": "string", + "description": "Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind." + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkerSizeOptions": { + "type": "string", + "description": "Size of the machines.", + "enum": [ + "Small", + "Medium", + "Large", + "D1", + "D2", + "D3", + "SmallV3", + "MediumV3", + "LargeV3", + "NestedSmall", + "NestedSmallLinux", + "Default" + ], + "x-ms-enum": { + "name": "WorkerSizeOptions", + "modelAsString": false + } + }, + "Workflow": { + "type": "object", + "description": "The workflow type.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowProperties", + "description": "The workflow properties.", + "x-ms-client-flatten": true + }, + "identity": { + "$ref": "#/definitions/ManagedServiceIdentity", + "description": "Managed service identity." + } + }, + "allOf": [ + { + "$ref": "#/definitions/WorkflowResource" + } + ] + }, + "WorkflowArtifacts": { + "type": "object", + "description": "The workflow filter.", + "properties": { + "appSettings": { + "description": "Application settings of the workflow." + }, + "files": { + "type": "object", + "description": "Files of the app.", + "additionalProperties": {} + }, + "filesToDelete": { + "type": "array", + "description": "Files of the app to delete.", + "items": { + "type": "string" + } + } + } + }, + "WorkflowEnvelope": { + "type": "object", + "description": "Workflow properties definition.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowEnvelopeProperties", + "description": "Additional workflow properties." + }, + "kind": { + "type": "string", + "description": "The resource kind." + }, + "location": { + "type": "string", + "description": "The resource location.", + "x-ms-mutability": [ + "read", + "create" + ] + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowEnvelopeCollection": { + "type": "object", + "description": "Collection of Kudu workflow information elements.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowEnvelope items on this page", + "items": { + "$ref": "#/definitions/WorkflowEnvelope" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowEnvelopeProperties": { + "type": "object", + "description": "Additional workflow properties.", + "properties": { + "files": { + "type": "object", + "description": "Gets or sets the files.", + "additionalProperties": {} + }, + "flowState": { + "$ref": "#/definitions/WorkflowState", + "description": "Gets or sets the state of the workflow." + }, + "health": { + "$ref": "#/definitions/WorkflowHealth", + "description": "Gets or sets workflow health." + } + } + }, + "WorkflowHealth": { + "type": "object", + "description": "Represents the workflow health.", + "properties": { + "state": { + "$ref": "#/definitions/WorkflowHealthState", + "description": "Gets or sets the workflow health state." + }, + "error": { + "$ref": "#/definitions/ErrorEntity", + "description": "Gets or sets the workflow error." + } + }, + "required": [ + "state" + ] + }, + "WorkflowHealthState": { + "type": "string", + "description": "Gets or sets the workflow health state.", + "enum": [ + "NotSpecified", + "Healthy", + "Unhealthy", + "Unknown" + ], + "x-ms-enum": { + "name": "WorkflowHealthState", + "modelAsString": false + } + }, + "WorkflowOutputParameter": { + "type": "object", + "description": "The workflow output parameter.", + "properties": { + "error": { + "description": "Gets the error.", + "readOnly": true + } + }, + "allOf": [ + { + "$ref": "#/definitions/WorkflowParameter" + } + ] + }, + "WorkflowParameter": { + "type": "object", + "description": "The workflow parameters.", + "properties": { + "type": { + "$ref": "#/definitions/ParameterType", + "description": "The type." + }, + "value": { + "description": "The value." + }, + "metadata": { + "description": "The metadata." + }, + "description": { + "type": "string", + "description": "The description." + } + } + }, + "WorkflowProperties": { + "type": "object", + "description": "The workflow properties.", + "properties": { + "provisioningState": { + "$ref": "#/definitions/WorkflowProvisioningState", + "description": "Gets the provisioning state.", + "readOnly": true + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Gets the created time.", + "readOnly": true + }, + "changedTime": { + "type": "string", + "format": "date-time", + "description": "Gets the changed time.", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/WorkflowState", + "description": "The state." + }, + "version": { + "type": "string", + "description": "Gets the version.", + "readOnly": true + }, + "accessEndpoint": { + "type": "string", + "description": "Gets the access endpoint.", + "readOnly": true + }, + "endpointsConfiguration": { + "$ref": "#/definitions/FlowEndpointsConfiguration", + "description": "The endpoints configuration." + }, + "accessControl": { + "$ref": "#/definitions/FlowAccessControlConfiguration", + "description": "The access control configuration." + }, + "sku": { + "$ref": "#/definitions/WorkflowSku", + "description": "The sku.", + "readOnly": true + }, + "integrationAccount": { + "$ref": "#/definitions/ResourceReference", + "description": "The integration account." + }, + "integrationServiceEnvironment": { + "$ref": "#/definitions/ResourceReference", + "description": "The integration service environment." + }, + "definition": { + "description": "The definition." + }, + "parameters": { + "type": "object", + "description": "The parameters.", + "additionalProperties": { + "$ref": "#/definitions/WorkflowParameter" + } + }, + "kind": { + "$ref": "#/definitions/Kind", + "description": "The workflow kind." + } + } + }, + "WorkflowProvisioningState": { + "type": "string", + "description": "The workflow provisioning state.", + "enum": [ + "NotSpecified", + "Accepted", + "Running", + "Ready", + "Creating", + "Created", + "Deleting", + "Deleted", + "Canceled", + "Failed", + "Succeeded", + "Moving", + "Updating", + "Registering", + "Registered", + "Unregistering", + "Unregistered", + "Completed", + "Renewing", + "Pending", + "Waiting", + "InProgress" + ], + "x-ms-enum": { + "name": "WorkflowProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "Accepted", + "value": "Accepted" + }, + { + "name": "Running", + "value": "Running" + }, + { + "name": "Ready", + "value": "Ready" + }, + { + "name": "Creating", + "value": "Creating" + }, + { + "name": "Created", + "value": "Created" + }, + { + "name": "Deleting", + "value": "Deleting" + }, + { + "name": "Deleted", + "value": "Deleted" + }, + { + "name": "Canceled", + "value": "Canceled" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "Moving", + "value": "Moving" + }, + { + "name": "Updating", + "value": "Updating" + }, + { + "name": "Registering", + "value": "Registering" + }, + { + "name": "Registered", + "value": "Registered" + }, + { + "name": "Unregistering", + "value": "Unregistering" + }, + { + "name": "Unregistered", + "value": "Unregistered" + }, + { + "name": "Completed", + "value": "Completed" + }, + { + "name": "Renewing", + "value": "Renewing" + }, + { + "name": "Pending", + "value": "Pending" + }, + { + "name": "Waiting", + "value": "Waiting" + }, + { + "name": "InProgress", + "value": "InProgress" + } + ] + } + }, + "WorkflowResource": { + "type": "object", + "description": "The base resource type.", + "properties": { + "id": { + "type": "string", + "description": "The resource id.", + "readOnly": true + }, + "name": { + "type": "string", + "description": "Gets the resource name.", + "readOnly": true + }, + "type": { + "type": "string", + "description": "Gets the resource type.", + "readOnly": true + }, + "location": { + "type": "string", + "description": "The resource location." + }, + "tags": { + "type": "object", + "description": "The resource tags.", + "additionalProperties": { + "type": "string" + } + } + } + }, + "WorkflowRun": { + "type": "object", + "description": "The workflow run.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowRunProperties", + "description": "The workflow run properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowRunAction": { + "type": "object", + "description": "The workflow run action.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowRunActionProperties", + "description": "The workflow run action properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowRunActionListResult": { + "type": "object", + "description": "The response of a WorkflowRunAction list operation.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowRunAction items on this page", + "items": { + "$ref": "#/definitions/WorkflowRunAction" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowRunActionProperties": { + "type": "object", + "description": "The workflow run action properties.", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Gets the start time.", + "readOnly": true + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Gets the end time.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "Gets the status.", + "readOnly": true + }, + "code": { + "type": "string", + "description": "Gets the code.", + "readOnly": true + }, + "error": { + "description": "Gets the error.", + "readOnly": true + }, + "trackingId": { + "type": "string", + "description": "Gets the tracking id.", + "readOnly": true + }, + "correlation": { + "$ref": "#/definitions/RunActionCorrelation", + "description": "The correlation properties." + }, + "inputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to inputs.", + "readOnly": true + }, + "outputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to outputs.", + "readOnly": true + }, + "trackedProperties": { + "description": "Gets the tracked properties.", + "readOnly": true + }, + "retryHistory": { + "type": "array", + "description": "Gets the retry histories.", + "items": { + "$ref": "#/definitions/RetryHistory" + }, + "x-ms-identifiers": [] + } + } + }, + "WorkflowRunActionRepetitionDefinition": { + "type": "object", + "description": "The workflow run action repetition definition.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowRunActionRepetitionProperties", + "description": "The workflow run action repetition properties definition.", + "x-ms-client-flatten": true + } + }, + "required": [ + "properties" + ], + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "WorkflowRunActionRepetitionDefinitionCollection": { + "type": "object", + "description": "A collection of workflow run action repetitions.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowRunActionRepetitionDefinition items on this page", + "items": { + "$ref": "#/definitions/WorkflowRunActionRepetitionDefinition" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowRunActionRepetitionProperties": { + "type": "object", + "description": "The workflow run action repetition properties definition.", + "properties": { + "repetitionIndexes": { + "type": "array", + "description": "The repetition indexes.", + "items": { + "$ref": "#/definitions/RepetitionIndex" + }, + "x-ms-identifiers": [ + "itemIndex" + ] + } + }, + "allOf": [ + { + "$ref": "#/definitions/OperationResult" + } + ] + }, + "WorkflowRunListResult": { + "type": "object", + "description": "The response of a WorkflowRun list operation.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowRun items on this page", + "items": { + "$ref": "#/definitions/WorkflowRun" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowRunProperties": { + "type": "object", + "description": "The workflow run properties.", + "properties": { + "waitEndTime": { + "type": "string", + "format": "date-time", + "description": "Gets the wait end time.", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Gets the start time.", + "readOnly": true + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Gets the end time.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "Gets the status.", + "readOnly": true + }, + "code": { + "type": "string", + "description": "Gets the code.", + "readOnly": true + }, + "error": { + "description": "Gets the error.", + "readOnly": true + }, + "correlationId": { + "type": "string", + "description": "Gets the correlation id.", + "readOnly": true + }, + "correlation": { + "$ref": "#/definitions/Correlation", + "description": "The run correlation." + }, + "workflow": { + "$ref": "#/definitions/ResourceReference", + "description": "Gets the reference to workflow version.", + "readOnly": true + }, + "trigger": { + "$ref": "#/definitions/WorkflowRunTrigger", + "description": "Gets the fired trigger.", + "readOnly": true + }, + "outputs": { + "type": "object", + "description": "Gets the outputs.", + "additionalProperties": { + "$ref": "#/definitions/WorkflowOutputParameter" + }, + "readOnly": true + }, + "response": { + "$ref": "#/definitions/WorkflowRunTrigger", + "description": "Gets the response of the flow run.", + "readOnly": true + } + } + }, + "WorkflowRunTrigger": { + "type": "object", + "description": "The workflow run trigger.", + "properties": { + "name": { + "type": "string", + "description": "Gets the name.", + "readOnly": true + }, + "inputs": { + "description": "Gets the inputs.", + "readOnly": true + }, + "inputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to inputs.", + "readOnly": true + }, + "outputs": { + "description": "Gets the outputs.", + "readOnly": true + }, + "outputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to outputs.", + "readOnly": true + }, + "scheduledTime": { + "type": "string", + "format": "date-time", + "description": "Gets the scheduled time.", + "readOnly": true + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "Gets the start time.", + "readOnly": true + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Gets the end time.", + "readOnly": true + }, + "trackingId": { + "type": "string", + "description": "Gets the tracking id.", + "readOnly": true + }, + "correlation": { + "$ref": "#/definitions/Correlation", + "description": "The run correlation." + }, + "code": { + "type": "string", + "description": "Gets the code.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "Gets the status.", + "readOnly": true + }, + "error": { + "description": "Gets the error.", + "readOnly": true + }, + "trackedProperties": { + "description": "Gets the tracked properties.", + "readOnly": true + } + } + }, + "WorkflowSku": { + "type": "object", + "description": "The sku type.", + "properties": { + "name": { + "$ref": "#/definitions/WorkflowSkuName", + "description": "The name." + }, + "plan": { + "$ref": "#/definitions/ResourceReference", + "description": "The reference to plan." + } + }, + "required": [ + "name" + ] + }, + "WorkflowSkuName": { + "type": "string", + "description": "The sku name.", + "enum": [ + "NotSpecified", + "Free", + "Shared", + "Basic", + "Standard", + "Premium" + ], + "x-ms-enum": { + "name": "WorkflowSkuName", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "Free", + "value": "Free" + }, + { + "name": "Shared", + "value": "Shared" + }, + { + "name": "Basic", + "value": "Basic" + }, + { + "name": "Standard", + "value": "Standard" + }, + { + "name": "Premium", + "value": "Premium" + } + ] + } + }, + "WorkflowState": { + "type": "string", + "description": "The workflow state.", + "enum": [ + "NotSpecified", + "Completed", + "Enabled", + "Disabled", + "Deleted", + "Suspended" + ], + "x-ms-enum": { + "name": "WorkflowState", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "Completed", + "value": "Completed" + }, + { + "name": "Enabled", + "value": "Enabled" + }, + { + "name": "Disabled", + "value": "Disabled" + }, + { + "name": "Deleted", + "value": "Deleted" + }, + { + "name": "Suspended", + "value": "Suspended" + } + ] + } + }, + "WorkflowStatus": { + "type": "string", + "description": "The workflow status.", + "enum": [ + "NotSpecified", + "Paused", + "Running", + "Waiting", + "Succeeded", + "Skipped", + "Suspended", + "Cancelled", + "Failed", + "Faulted", + "TimedOut", + "Aborted", + "Ignored" + ], + "x-ms-enum": { + "name": "WorkflowStatus", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "Paused", + "value": "Paused" + }, + { + "name": "Running", + "value": "Running" + }, + { + "name": "Waiting", + "value": "Waiting" + }, + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "Skipped", + "value": "Skipped" + }, + { + "name": "Suspended", + "value": "Suspended" + }, + { + "name": "Cancelled", + "value": "Cancelled" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Faulted", + "value": "Faulted" + }, + { + "name": "TimedOut", + "value": "TimedOut" + }, + { + "name": "Aborted", + "value": "Aborted" + }, + { + "name": "Ignored", + "value": "Ignored" + } + ] + } + }, + "WorkflowTrigger": { + "type": "object", + "description": "The workflow trigger.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowTriggerProperties", + "description": "The workflow trigger properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowTriggerCallbackUrl": { + "type": "object", + "description": "The workflow trigger callback URL.", + "properties": { + "value": { + "type": "string", + "description": "Gets the workflow trigger callback URL.", + "readOnly": true + }, + "method": { + "type": "string", + "description": "Gets the workflow trigger callback URL HTTP method.", + "readOnly": true + }, + "basePath": { + "type": "string", + "description": "Gets the workflow trigger callback URL base path.", + "readOnly": true + }, + "relativePath": { + "type": "string", + "description": "Gets the workflow trigger callback URL relative path.", + "readOnly": true + }, + "relativePathParameters": { + "type": "array", + "description": "Gets the workflow trigger callback URL relative path parameters.", + "items": { + "type": "string" + } + }, + "queries": { + "$ref": "#/definitions/WorkflowTriggerListCallbackUrlQueries", + "description": "Gets the workflow trigger callback URL query parameters." + } + } + }, + "WorkflowTriggerHistory": { + "type": "object", + "description": "The workflow trigger history.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowTriggerHistoryProperties", + "description": "Gets the workflow trigger history properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" + } + ] + }, + "WorkflowTriggerHistoryListResult": { + "type": "object", + "description": "The response of a WorkflowTriggerHistory list operation.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowTriggerHistory items on this page", + "items": { + "$ref": "#/definitions/WorkflowTriggerHistory" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowTriggerHistoryProperties": { + "type": "object", + "description": "The workflow trigger history properties.", + "properties": { + "startTime": { + "type": "string", + "format": "date-time", + "description": "Gets the start time.", + "readOnly": true + }, + "endTime": { + "type": "string", + "format": "date-time", + "description": "Gets the end time.", + "readOnly": true + }, + "scheduledTime": { + "type": "string", + "format": "date-time", + "description": "The scheduled time.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "Gets the status.", + "readOnly": true + }, + "code": { + "type": "string", + "description": "Gets the code.", + "readOnly": true + }, + "error": { + "description": "Gets the error.", + "readOnly": true + }, + "trackingId": { + "type": "string", + "description": "Gets the tracking id.", + "readOnly": true + }, + "correlation": { + "$ref": "#/definitions/Correlation", + "description": "The run correlation." + }, + "inputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to input parameters.", + "readOnly": true + }, + "outputsLink": { + "$ref": "#/definitions/ContentLink", + "description": "Gets the link to output parameters.", + "readOnly": true + }, + "fired": { + "type": "boolean", + "description": "The value indicating whether trigger was fired.", + "readOnly": true + }, + "run": { + "$ref": "#/definitions/ResourceReference", + "description": "Gets the reference to workflow run.", + "readOnly": true + } + } + }, + "WorkflowTriggerListCallbackUrlQueries": { + "type": "object", + "description": "Gets the workflow trigger callback URL query parameters.", + "properties": { + "api-version": { + "type": "string", + "description": "The api version.", + "x-ms-client-name": "apiVersion" + }, + "sp": { + "type": "string", + "description": "The SAS permissions." + }, + "sv": { + "type": "string", + "description": "The SAS version." + }, + "sig": { + "type": "string", + "description": "The SAS signature." + }, + "se": { + "type": "string", + "description": "The SAS timestamp." + } + } + }, + "WorkflowTriggerListResult": { + "type": "object", + "description": "The response of a WorkflowTrigger list operation.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowTrigger items on this page", + "items": { + "$ref": "#/definitions/WorkflowTrigger" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowTriggerProperties": { + "type": "object", + "description": "The workflow trigger properties.", + "properties": { + "provisioningState": { + "$ref": "#/definitions/WorkflowTriggerProvisioningState", + "description": "Gets the provisioning state.", + "readOnly": true + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Gets the created time.", + "readOnly": true + }, + "changedTime": { + "type": "string", + "format": "date-time", + "description": "Gets the changed time.", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/WorkflowState", + "description": "Gets the state.", + "readOnly": true + }, + "status": { + "$ref": "#/definitions/WorkflowStatus", + "description": "Gets the status.", + "readOnly": true + }, + "lastExecutionTime": { + "type": "string", + "format": "date-time", + "description": "Gets the last execution time.", + "readOnly": true + }, + "nextExecutionTime": { + "type": "string", + "format": "date-time", + "description": "Gets the next execution time.", + "readOnly": true + }, + "recurrence": { + "$ref": "#/definitions/WorkflowTriggerRecurrence", + "description": "Gets the workflow trigger recurrence.", + "readOnly": true + }, + "workflow": { + "$ref": "#/definitions/ResourceReference", + "description": "Gets the reference to workflow.", + "readOnly": true + } + } + }, + "WorkflowTriggerProvisioningState": { + "type": "string", + "description": "The workflow trigger provisioning state.", + "enum": [ + "NotSpecified", + "Accepted", + "Running", + "Ready", + "Creating", + "Created", + "Deleting", + "Deleted", + "Canceled", + "Failed", + "Succeeded", + "Moving", + "Updating", + "Registering", + "Registered", + "Unregistering", + "Unregistered", + "Completed" + ], + "x-ms-enum": { + "name": "WorkflowTriggerProvisioningState", + "modelAsString": true, + "values": [ + { + "name": "NotSpecified", + "value": "NotSpecified" + }, + { + "name": "Accepted", + "value": "Accepted" + }, + { + "name": "Running", + "value": "Running" + }, + { + "name": "Ready", + "value": "Ready" + }, + { + "name": "Creating", + "value": "Creating" + }, + { + "name": "Created", + "value": "Created" + }, + { + "name": "Deleting", + "value": "Deleting" + }, + { + "name": "Deleted", + "value": "Deleted" + }, + { + "name": "Canceled", + "value": "Canceled" + }, + { + "name": "Failed", + "value": "Failed" + }, + { + "name": "Succeeded", + "value": "Succeeded" + }, + { + "name": "Moving", + "value": "Moving" + }, + { + "name": "Updating", + "value": "Updating" + }, + { + "name": "Registering", + "value": "Registering" + }, + { + "name": "Registered", + "value": "Registered" + }, + { + "name": "Unregistering", + "value": "Unregistering" + }, + { + "name": "Unregistered", + "value": "Unregistered" + }, + { + "name": "Completed", + "value": "Completed" + } + ] + } + }, + "WorkflowTriggerRecurrence": { + "type": "object", + "description": "The workflow trigger recurrence.", + "properties": { + "frequency": { + "$ref": "#/definitions/RecurrenceFrequency", + "description": "The frequency." + }, + "interval": { + "type": "integer", + "format": "int32", + "description": "The interval." + }, + "startTime": { + "type": "string", + "description": "The start time." + }, + "endTime": { + "type": "string", + "description": "The end time." + }, + "timeZone": { + "type": "string", + "description": "The time zone." + }, + "schedule": { + "$ref": "#/definitions/RecurrenceSchedule", + "description": "The recurrence schedule." + } + } + }, + "WorkflowVersion": { + "type": "object", + "description": "The workflow version.", + "properties": { + "properties": { + "$ref": "#/definitions/WorkflowVersionProperties", + "description": "The workflow version properties.", + "x-ms-client-flatten": true + } + }, + "allOf": [ + { + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" + } + ] + }, + "WorkflowVersionListResult": { + "type": "object", + "description": "The response of a WorkflowVersion list operation.", + "properties": { + "value": { + "type": "array", + "description": "The WorkflowVersion items on this page", + "items": { + "$ref": "#/definitions/WorkflowVersion" + } + }, + "nextLink": { + "type": "string", + "format": "uri", + "description": "The link to the next page of items" + } + }, + "required": [ + "value" + ] + }, + "WorkflowVersionProperties": { + "type": "object", + "description": "The workflow version properties.", + "properties": { + "provisioningState": { + "$ref": "#/definitions/WorkflowProvisioningState", + "description": "The provisioning state.", + "readOnly": true + }, + "createdTime": { + "type": "string", + "format": "date-time", + "description": "Gets the created time.", + "readOnly": true + }, + "changedTime": { + "type": "string", + "format": "date-time", + "description": "Gets the changed time.", + "readOnly": true + }, + "state": { + "$ref": "#/definitions/WorkflowState", + "description": "The state." + }, + "version": { + "type": "string", + "description": "Gets the version.", + "readOnly": true + }, + "accessEndpoint": { + "type": "string", + "description": "Gets the access endpoint.", + "readOnly": true + }, + "endpointsConfiguration": { + "$ref": "#/definitions/FlowEndpointsConfiguration", + "description": "The endpoints configuration." + }, + "accessControl": { + "$ref": "#/definitions/FlowAccessControlConfiguration", + "description": "The access control configuration." + }, + "sku": { + "$ref": "#/definitions/WorkflowSku", + "description": "The sku.", + "readOnly": true + }, + "integrationAccount": { + "$ref": "#/definitions/ResourceReference", + "description": "The integration account." + }, + "definition": { + "description": "The definition." + }, + "parameters": { + "type": "object", + "description": "The parameters.", + "additionalProperties": { + "$ref": "#/definitions/WorkflowParameter" + } + } + } + }, + "stringApplicationJson": { + "type": "string" + } + }, + "parameters": { + "Azure.Core.ExpandQueryParameter": { + "name": "expand", + "in": "query", + "description": "Expand the indicated resources into the response.", + "required": false, + "type": "array", + "items": { + "type": "string" + }, + "collectionFormat": "multi", + "x-ms-parameter-location": "method" + }, + "Azure.Core.FilterQueryParameter": { + "name": "filter", + "in": "query", + "description": "Filter the result list using the given expression.", + "required": false, + "type": "string", + "x-ms-parameter-location": "method" + }, + "Azure.Core.MaxPageSizeQueryParameter": { + "name": "maxpagesize", + "in": "query", + "description": "The maximum number of result items per page.", + "required": false, + "type": "integer", + "format": "int32", + "x-ms-parameter-location": "method" + }, + "Azure.Core.OrderByQueryParameter": { + "name": "orderby", + "in": "query", + "description": "Expressions that specify the order of returned results.", + "required": false, + "type": "array", + "items": { + "type": "string" + }, + "collectionFormat": "multi", + "x-ms-parameter-location": "method" + }, + "Azure.Core.SelectQueryParameter": { + "name": "select", + "in": "query", + "description": "Select the specified fields to be included in the response.", + "required": false, + "type": "array", + "items": { + "type": "string" + }, + "collectionFormat": "multi", + "x-ms-parameter-location": "method" + }, + "Azure.Core.SkipQueryParameter": { + "name": "skip", + "in": "query", + "description": "The number of result items to skip.", + "required": false, + "type": "integer", + "format": "int32", + "default": 0, + "x-ms-parameter-location": "method" + }, + "Azure.Core.TopQueryParameter": { + "name": "top", + "in": "query", + "description": "The number of result items to return.", + "required": false, + "type": "integer", + "format": "int32", + "x-ms-parameter-location": "method" + } + } +} From 87c2774fc374fb810e7e7ebf427272c7347e3f3e Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Wed, 22 Apr 2026 16:22:04 -0700 Subject: [PATCH 03/10] add examples --- changed_files.txt | 354 + .../AIGateways_CreateOrUpdate.json | 47 + .../2026-06-01-preview/AIGateways_Delete.json | 14 + .../2026-06-01-preview/AIGateways_Get.json | 26 + .../AIGateways_ListByResourceGroup.json | 29 + .../AIGateways_ListBySubscription.json | 28 + .../2026-06-01-preview/AIGateways_Patch.json | 31 + .../AnalyzeCustomHostName.json | 34 + .../AnalyzeCustomHostNameSlot.json | 35 + ...roveOrRejectPrivateEndpointConnection.json | 61 + .../AppServiceEnvironments_ChangeVnet.json | 30 + ...AppServiceEnvironments_CreateOrUpdate.json | 187 + ...ironments_CreateOrUpdateMultiRolePool.json | 26 + ...dateMultiRolePool_UpdateMultiRolePool.json | 26 + ...Environments_CreateOrUpdateWorkerPool.json | 27 + ...teWorkerPool_CreateOrUpdateWorkerPool.json | 27 + .../AppServiceEnvironments_Delete.json | 21 + ...ments_DeletePrivateEndpointConnection.json | 28 + .../AppServiceEnvironments_Get.json | 67 + ...ments_GetAseV3NetworkingConfiguration.json | 38 + ...erviceEnvironments_GetDiagnosticsItem.json | 19 + ...pServiceEnvironments_GetMultiRolePool.json | 35 + ...ronments_GetPrivateEndpointConnection.json | 33 + ...ents_GetPrivateEndpointConnectionList.json | 36 + ...eEnvironments_GetPrivateLinkResources.json | 18 + .../AppServiceEnvironments_GetVipInfo.json | 43 + .../AppServiceEnvironments_GetWorkerPool.json | 28 + .../AppServiceEnvironments_List.json | 69 + ...rviceEnvironments_ListAppServicePlans.json | 63 + ...rviceEnvironments_ListByResourceGroup.json | 70 + ...AppServiceEnvironments_ListCapacities.json | 59 + ...ppServiceEnvironments_ListDiagnostics.json | 20 + ...nments_ListMultiRoleMetricDefinitions.json | 44 + ...ultiRolePoolInstanceMetricDefinitions.json | 45 + ...iceEnvironments_ListMultiRolePoolSkus.json | 160 + ...erviceEnvironments_ListMultiRolePools.json | 40 + ...rviceEnvironments_ListMultiRoleUsages.json | 19 + ...AppServiceEnvironments_ListOperations.json | 16 + .../AppServiceEnvironments_ListUsages.json | 30 + .../AppServiceEnvironments_ListWebApps.json | 84 + ...nments_ListWebWorkerMetricDefinitions.json | 40 + ...rviceEnvironments_ListWebWorkerUsages.json | 20 + ...stWorkerPoolInstanceMetricDefinitions.json | 41 + ...erviceEnvironments_ListWorkerPoolSkus.json | 91 + ...ppServiceEnvironments_ListWorkerPools.json | 56 + .../AppServiceEnvironments_Reboot.json | 15 + .../AppServiceEnvironments_Resume.json | 27 + .../AppServiceEnvironments_Suspend.json | 27 + ...ents_TestUpgradeAvailableNotification.json | 15 + .../AppServiceEnvironments_Update.json | 185 + ...ents_UpdateAseNetworkingConfiguration.json | 44 + .../AppServiceEnvironments_Upgrade.json | 17 + .../2026-06-01-preview/ApplySlotConfig.json | 19 + ...veRejectSitePrivateEndpointConnection.json | 62 + ...jectSitePrivateEndpointConnectionSlot.json | 63 + ...PrivateEndpointConnection_StaticSites.json | 62 + .../2026-06-01-preview/BackupWebApp.json | 76 + .../2026-06-01-preview/CloneWebApp.json | 265 + .../2026-06-01-preview/CloneWebAppSlot.json | 266 + .../CreateOrUpdateAppServicePlan.json | 84 + .../CreateOrUpdateCertificate.json | 41 + ...ateOrUpdateFunctionAppFlexConsumption.json | 353 + ...FunctionAppFlexConsumptionWithDetails.json | 382 ++ .../CreateOrUpdateSiteCertificate.json | 62 + .../CreateOrUpdateSiteCertificateSlot.json | 63 + .../CreateOrUpdateStaticSite.json | 83 + .../CreateOrUpdateStaticSiteAppSettings.json | 28 + .../CreateOrUpdateStaticSiteBasicAuth.json | 33 + ...ateOrUpdateStaticSiteBuildAppSettings.json | 29 + ...dateStaticSiteBuildDatabaseConnection.json | 35 + ...ateStaticSiteBuildFunctionAppSettings.json | 29 + .../CreateOrUpdateStaticSiteCustomDomain.json | 37 + ...eOrUpdateStaticSiteDatabaseConnection.json | 34 + ...OrUpdateStaticSiteFunctionAppSettings.json | 28 + .../CreateOrUpdateWebApp.json | 264 + .../CreateOrUpdateWebAppSlot.json | 255 + .../CreateUserRolesInvitationLink.json | 30 + .../DeleteAppServicePlan.json | 14 + ...DeleteAseCustomDnsSuffixConfiguration.json | 20 + .../2026-06-01-preview/DeleteCertificate.json | 14 + .../DeleteDeployWorkflowArtifacts.json | 19 + .../DeleteSiteCertificate.json | 15 + .../DeleteSiteCertificateSlot.json | 16 + .../DeleteSitePrivateEndpointConnection.json | 25 + ...leteSitePrivateEndpointConnectionSlot.json | 26 + ...PrivateEndpointConnection_StaticSites.json | 25 + .../2026-06-01-preview/DeleteStaticSite.json | 18 + .../DeleteStaticSiteBuild.json | 20 + ...leteStaticSiteBuildDatabaseConnection.json | 16 + .../DeleteStaticSiteCustomDomain.json | 19 + .../DeleteStaticSiteDatabaseConnection.json | 15 + .../DeleteStaticSiteUser.json | 15 + .../2026-06-01-preview/DeleteWebApp.json | 15 + .../DeleteWebAppBackup.json | 15 + .../2026-06-01-preview/DeleteWebAppSlot.json | 16 + .../2026-06-01-preview/DetachStaticSite.json | 18 + ...UserProvidedFunctionAppFromStaticSite.json | 15 + ...rovidedFunctionAppFromStaticSiteBuild.json | 16 + .../Diagnostics_ExecuteSiteAnalysis.json | 128 + .../Diagnostics_ExecuteSiteAnalysisSlot.json | 128 + ...gnostics_ExecuteSiteAnalysisSlot_Slot.json | 128 + .../Diagnostics_ExecuteSiteAnalysis_Slot.json | 128 + .../Diagnostics_ExecuteSiteDetector.json | 32 + .../Diagnostics_ExecuteSiteDetectorSlot.json | 32 + ...gnostics_ExecuteSiteDetectorSlot_Slot.json | 32 + .../Diagnostics_ExecuteSiteDetector_Slot.json | 32 + ...GetHostingEnvironmentDetectorResponse.json | 135 + .../Diagnostics_GetSiteAnalysis.json | 24 + .../Diagnostics_GetSiteAnalysisSlot.json | 24 + .../Diagnostics_GetSiteAnalysisSlot_Slot.json | 24 + .../Diagnostics_GetSiteAnalysis_Slot.json | 24 + .../Diagnostics_GetSiteDetector.json | 27 + .../Diagnostics_GetSiteDetectorResponse.json | 136 + ...agnostics_GetSiteDetectorResponseSlot.json | 136 + ...tics_GetSiteDetectorResponseSlot_Slot.json | 136 + ...gnostics_GetSiteDetectorResponse_Slot.json | 136 + .../Diagnostics_GetSiteDetectorSlot.json | 27 + .../Diagnostics_GetSiteDetectorSlot_Slot.json | 27 + .../Diagnostics_GetSiteDetector_Slot.json | 27 + ...Diagnostics_GetSiteDiagnosticCategory.json | 23 + ...nostics_GetSiteDiagnosticCategorySlot.json | 23 + ...cs_GetSiteDiagnosticCategorySlot_Slot.json | 23 + ...ostics_GetSiteDiagnosticCategory_Slot.json | 23 + ...stHostingEnvironmentDetectorResponses.json | 29 + .../Diagnostics_ListSiteAnalyses.json | 55 + .../Diagnostics_ListSiteAnalysesSlot.json | 55 + ...Diagnostics_ListSiteAnalysesSlot_Slot.json | 55 + .../Diagnostics_ListSiteAnalyses_Slot.json | 55 + ...Diagnostics_ListSiteDetectorResponses.json | 30 + ...nostics_ListSiteDetectorResponsesSlot.json | 30 + ...cs_ListSiteDetectorResponsesSlot_Slot.json | 30 + ...ostics_ListSiteDetectorResponses_Slot.json | 30 + .../Diagnostics_ListSiteDetectors.json | 200 + .../Diagnostics_ListSiteDetectorsSlot.json | 60 + ...iagnostics_ListSiteDetectorsSlot_Slot.json | 60 + .../Diagnostics_ListSiteDetectors_Slot.json | 200 + ...gnostics_ListSiteDiagnosticCategories.json | 26 + ...tics_ListSiteDiagnosticCategoriesSlot.json | 26 + ...ListSiteDiagnosticCategoriesSlot_Slot.json | 26 + ...ics_ListSiteDiagnosticCategories_Slot.json | 26 + .../GenerateStaticSiteWorkflowPreview.json | 31 + .../2026-06-01-preview/GetAllStaticSites.json | 40 + .../2026-06-01-preview/GetAppServicePlan.json | 42 + .../GetAseCustomDnsSuffixConfiguration.json | 27 + .../GetAuthSettingsV2WithoutSecrets.json | 88 + .../2026-06-01-preview/GetCertificate.json | 32 + .../2026-06-01-preview/GetDeletedWebApp.json | 29 + .../GetDeletedWebAppByLocation.json | 30 + .../GetDeletedWebAppSnapshots.json | 24 + .../GetFunctionAppStacks.json | 781 +++ .../GetFunctionAppStacksForLocation.json | 788 +++ ...etInboundNetworkDependenciesEndpoints.json | 81 + .../GetKeyVaultReferencesForAppSetting.json | 24 + ...etKeyVaultReferencesForAppSettingSlot.json | 25 + .../GetKeyVaultReferencesForAppSettings.json | 35 + ...tKeyVaultReferencesForAppSettingsSlot.json | 36 + .../GetLinkedBackendForStaticSite.json | 27 + .../GetLinkedBackendForStaticSiteBuild.json | 28 + .../GetLinkedBackendsForStaticSite.json | 31 + .../GetLinkedBackendsForStaticSiteBuild.json | 33 + ...tOutboundNetworkDependenciesEndpoints.json | 804 +++ .../GetPublishingCredentialsPolicy.json | 21 + .../GetPublishingCredentialsPolicySlot.json | 22 + ...gCredentialsPolicySlot_FtpAllowedSlot.json | 22 + ...ishingCredentialsPolicy_GetFtpAllowed.json | 21 + .../GetResourceHealthMetadataBySite.json | 25 + .../GetResourceHealthMetadataBySite_Slot.json | 25 + .../GetSiteCertificate.json | 33 + .../GetSiteCertificateSlot.json | 34 + .../2026-06-01-preview/GetSiteConfig.json | 72 + .../GetSiteDeploymentStatus.json | 47 + .../GetSiteDeploymentStatusSlot.json | 48 + .../GetSiteInstanceInfo.json | 32 + .../GetSiteInstanceInfo_Slot.json | 32 + .../GetSitePrivateEndpointConnection.json | 30 + .../GetSitePrivateEndpointConnectionList.json | 34 + .../GetSitePrivateEndpointConnectionSlot.json | 31 + ...PrivateEndpointConnection_StaticSites.json | 30 + .../GetSitePrivateLinkResources.json | 33 + .../GetSitePrivateLinkResourcesSlot.json | 34 + .../GetSitePrivateLinkResources_WebApps.json | 33 + .../2026-06-01-preview/GetStaticSite.json | 45 + .../GetStaticSiteBasicAuth.json | 26 + .../GetStaticSiteBuild.json | 37 + .../GetStaticSiteBuildDatabaseConnection.json | 27 + ...iteBuildDatabaseConnectionWithDetails.json | 40 + ...GetStaticSiteBuildDatabaseConnections.json | 31 + ...teBuildDatabaseConnectionsWithDetails.json | 44 + .../GetStaticSiteBuilds.json | 55 + .../GetStaticSiteCustomDomain.json | 22 + .../GetStaticSiteCustomDomains.json | 27 + .../GetStaticSiteDatabaseConnection.json | 26 + ...aticSiteDatabaseConnectionWithDetails.json | 39 + .../GetStaticSiteDatabaseConnections.json | 30 + ...ticSiteDatabaseConnectionsWithDetails.json | 43 + .../2026-06-01-preview/GetStaticSites.json | 42 + ...ubscriptionOperationWithAsyncResponse.json | 13 + .../GetUsagesInLocation.json | 29 + ...tUserProvidedFunctionAppForStaticSite.json | 26 + ...ProvidedFunctionAppForStaticSiteBuild.json | 27 + ...UserProvidedFunctionAppsForStaticSite.json | 30 + ...rovidedFunctionAppsForStaticSiteBuild.json | 31 + .../2026-06-01-preview/GetWebApp.json | 135 + .../2026-06-01-preview/GetWebAppBackup.json | 49 + .../GetWebAppBackupWithSecrets.json | 77 + .../2026-06-01-preview/GetWebAppSlot.json | 131 + .../2026-06-01-preview/GetWebAppStacks.json | 2917 ++++++++ .../GetWebAppStacksForLocation.json | 2925 +++++++++ .../GetWebSiteNetworkTraceOperation.json | 37 + .../GetWebSiteNetworkTraceOperation_Slot.json | 37 + ...etWebSiteNetworkTraceOperation_SlotV2.json | 37 + .../GetWebSiteNetworkTraceOperation_V2.json | 37 + .../GetWebSiteNetworkTraces.json | 24 + ...eNetworkTraces_GetNetworkTracesSlotV2.json | 24 + .../GetWebSiteNetworkTraces_Slot.json | 24 + .../GetWebSiteNetworkTraces_SlotV2.json | 24 + .../2026-06-01-preview/GetWorkflow.json | 61 + .../2026-06-01-preview/GetWorkflow_Slot.json | 61 + .../KubeEnvironments_CreateOrUpdate.json | 70 + .../KubeEnvironments_Delete.json | 25 + .../KubeEnvironments_Get.json | 40 + .../KubeEnvironments_ListByResourceGroup.json | 58 + .../KubeEnvironments_ListBySubscription.json | 50 + .../KubeEnvironments_Update.json | 69 + .../LastKnownGoods_GetLastKnownGood.json | 24 + .../LastKnownGoods_MarkLastKnownGood.json | 24 + .../LinkBackendToStaticSite.json | 33 + .../LinkBackendToStaticSiteBuild.json | 34 + .../ListAppServicePlans.json | 69 + .../ListAppServicePlansByResourceGroup.json | 70 + .../2026-06-01-preview/ListAppSettings.json | 25 + .../2026-06-01-preview/ListAseRegions.json | 56 + .../2026-06-01-preview/ListAuthSettings.json | 34 + .../ListAuthSettingsV2.json | 88 + .../2026-06-01-preview/ListCertificates.json | 51 + .../ListCertificatesByResourceGroup.json | 52 + .../ListCustomHostNameSites.json | 52 + .../ListCustomSpecificHostNameSites.json | 39 + .../ListDeletedWebAppsByLocation.json | 34 + .../2026-06-01-preview/ListOperations.json | 5843 +++++++++++++++++ .../ListPublishingCredentialsPolicies.json | 35 + ...ListPublishingCredentialsPoliciesSlot.json | 36 + ...ResourceHealthMetadataByResourceGroup.json | 26 + .../ListResourceHealthMetadataBySite.json | 28 + ...ListResourceHealthMetadataBySite_Slot.json | 28 + ...tResourceHealthMetadataBySubscription.json | 25 + .../ListSiteBackupsSlot.json | 30 + .../ListSiteCertificatesByResourceGroup.json | 53 + ...stSiteCertificatesByResourceGroupSlot.json | 54 + .../ListSiteDeploymentStatus.json | 19 + .../ListSiteDeploymentStatusSlot.json | 20 + .../2026-06-01-preview/ListSlotBackups.json | 30 + .../ListStaticSiteAppSettings.json | 21 + .../ListStaticSiteBasicAuth.json | 28 + .../ListStaticSiteBuildAppSettings.json | 22 + ...istStaticSiteBuildFunctionAppSettings.json | 22 + .../ListStaticSiteBuildFunctions.json | 28 + .../ListStaticSiteConfiguredRoles.json | 22 + .../ListStaticSiteFunctionAppSettings.json | 21 + .../ListStaticSiteFunctions.json | 27 + .../ListStaticSiteSecrets.json | 20 + .../ListStaticSiteUsers.json | 30 + .../2026-06-01-preview/ListWebAppBackups.json | 52 + .../ListWebAppConfigurations.json | 76 + .../2026-06-01-preview/ListWebAppSlots.json | 245 + .../2026-06-01-preview/ListWebApps.json | 253 + .../ListWebAppsByResourceGroup.json | 254 + .../2026-06-01-preview/ListWorkflows.json | 51 + ...ListWorkflowsConfigurationConnections.json | 48 + ...orkflowsConfigurationConnections_Slot.json | 48 + .../ListWorkflows_Slot.json | 51 + ...s_CreateOrUpdateManagedTrafficConfig.json} | 34 +- ...afficConfigs_GetManagedTrafficConfig.json} | 22 +- .../PatchAppServicePlan.json | 74 + .../2026-06-01-preview/PatchCertificate.json | 38 + .../PatchSiteCertificate.json | 39 + .../PatchSiteCertificateSlot.json | 40 + .../2026-06-01-preview/PatchStaticSite.json | 67 + ...atchStaticSiteBuildDatabaseConnection.json | 30 + .../PatchStaticSiteDatabaseConnection.json | 29 + .../PostDeployWorkflowArtifacts.json | 59 + .../PostDeployWorkflowArtifactsSlot.json | 60 + ...UserProvidedFunctionAppWithStaticSite.json | 48 + ...rovidedFunctionAppWithStaticSiteBuild.json | 49 + .../ResetStaticSiteApiKey.json | 19 + .../RestoreWebAppBackup.json | 40 + ...rmSilos_CreateOrUpdateServerFarmSilo.json} | 36 +- .../ServerFarmSilos_DeleteServerFarmSilo.json | 19 + .../ServerFarmSilos_GetServerFarmSilo.json} | 22 +- .../ServerFarmSilos_ListServerFarmSilos.json | 50 + .../SiteSilos_CreateOrUpdateSiteSilo.json} | 94 +- .../SiteSilos_DeleteSiteSilo.json | 19 + .../SiteSilos_GetSiteSilo.json | 45 + .../SiteSilos_ListSiteSilos.json | 60 + .../StartWebSiteNetworkTraceOperation.json | 37 + ...tartWebSiteNetworkTraceOperation_Slot.json | 37 + ...tworkTraceOperation_StartNetworkTrace.json | 37 + ...kTraceOperation_StartNetworkTraceSlot.json | 37 + .../StaticSiteBuildZipDeploy.json | 28 + .../StaticSiteZipDeploy.json | 27 + .../StopWebSiteNetworkTrace.json | 15 + .../StopWebSiteNetworkTrace_Slot.json | 15 + ...pWebSiteNetworkTrace_StopNetworkTrace.json | 15 + ...SiteNetworkTrace_StopNetworkTraceSlot.json | 15 + .../UnlinkBackendFromStaticSite.json | 16 + .../UnlinkBackendFromStaticSiteBuild.json | 17 + .../2026-06-01-preview/UpdateAppSettings.json | 31 + ...UpdateAseCustomDnsSuffixConfiguration.json | 34 + .../UpdateAuthSettings.json | 49 + .../UpdateAuthSettingsV2.json | 157 + .../UpdateAzureStorageAccounts.json | 41 + .../2026-06-01-preview/UpdateMachineKey.json | 16 + .../UpdatePublishingCredentialsPolicy.json | 26 + ...UpdatePublishingCredentialsPolicySlot.json | 27 + ...ntialsPolicySlot_UpdateFtpAllowedSlot.json | 27 + ...ingCredentialsPolicy_UpdateFtpAllowed.json | 27 + .../2026-06-01-preview/UpdateSiteConfig.json | 125 + .../UpdateStaticSiteUser.json | 30 + .../2026-06-01-preview/UpdateWebApp.json | 261 + .../2026-06-01-preview/UpdateWebAppSlot.json | 252 + .../ValidateLinkedBackendForStaticSite.json | 25 + ...lidateLinkedBackendForStaticSiteBuild.json | 26 + .../ValidateStaticSiteCustomDomain.json | 22 + .../VerifyHostingEnvironmentVnet.json | 26 + ...ActionRepetitionsRequestHistories_Get.json | 73 + ...ctionRepetitionsRequestHistories_List.json | 76 + .../WorkflowRunActionRepetitions_Get.json | 59 + .../WorkflowRunActionRepetitions_List.json | 103 + ...ctionRepetitions_ListExpressionTraces.json | 27 + ...WorkflowRunActionScopeRepetitions_Get.json | 40 + ...orkflowRunActionScopeRepetitions_List.json | 65 + .../WorkflowRunActions_Get.json | 40 + .../WorkflowRunActions_List.json | 43 + ...rkflowRunActions_ListExpressionTraces.json | 27 + .../WorkflowRuns_Cancel.json | 15 + .../2026-06-01-preview/WorkflowRuns_Get.json | 47 + .../2026-06-01-preview/WorkflowRuns_List.json | 50 + .../WorkflowTriggerHistories_Get.json | 38 + .../WorkflowTriggerHistories_List.json | 41 + .../WorkflowTriggerHistories_Resubmit.json | 20 + .../WorkflowTriggers_Get.json | 32 + .../WorkflowTriggers_GetSchemaJson.json | 20 + .../WorkflowTriggers_List.json | 35 + .../WorkflowTriggers_ListCallbackUrl.json | 27 + .../WorkflowTriggers_Run.json | 20 + .../WorkflowVersions_Get.json | 45 + .../WorkflowVersions_List.json | 48 + .../Workflows_RegenerateAccessKey.json | 17 + .../Workflows_Validate.json | 28 + .../examples/AIGateways_CreateOrUpdate.json | 2 +- .../examples/AIGateways_Delete.json | 2 +- .../examples/AIGateways_Get.json | 2 +- .../AIGateways_ListByResourceGroup.json | 2 +- .../AIGateways_ListBySubscription.json | 2 +- .../examples/AIGateways_Patch.json | 2 +- .../examples/AnalyzeCustomHostName.json | 2 +- .../examples/AnalyzeCustomHostNameSlot.json | 2 +- ...roveOrRejectPrivateEndpointConnection.json | 2 +- .../AppServiceEnvironments_ChangeVnet.json | 2 +- ...AppServiceEnvironments_CreateOrUpdate.json | 2 +- ...ironments_CreateOrUpdateMultiRolePool.json | 2 +- ...dateMultiRolePool_UpdateMultiRolePool.json | 2 +- ...Environments_CreateOrUpdateWorkerPool.json | 2 +- ...teWorkerPool_CreateOrUpdateWorkerPool.json | 2 +- .../AppServiceEnvironments_Delete.json | 2 +- ...ments_DeletePrivateEndpointConnection.json | 2 +- .../examples/AppServiceEnvironments_Get.json | 2 +- ...ments_GetAseV3NetworkingConfiguration.json | 2 +- ...erviceEnvironments_GetDiagnosticsItem.json | 2 +- ...pServiceEnvironments_GetMultiRolePool.json | 2 +- ...ronments_GetPrivateEndpointConnection.json | 2 +- ...ents_GetPrivateEndpointConnectionList.json | 2 +- ...eEnvironments_GetPrivateLinkResources.json | 2 +- .../AppServiceEnvironments_GetVipInfo.json | 2 +- .../AppServiceEnvironments_GetWorkerPool.json | 2 +- .../examples/AppServiceEnvironments_List.json | 2 +- ...rviceEnvironments_ListAppServicePlans.json | 2 +- ...rviceEnvironments_ListByResourceGroup.json | 2 +- ...AppServiceEnvironments_ListCapacities.json | 2 +- ...ppServiceEnvironments_ListDiagnostics.json | 2 +- ...nments_ListMultiRoleMetricDefinitions.json | 2 +- ...ultiRolePoolInstanceMetricDefinitions.json | 2 +- ...iceEnvironments_ListMultiRolePoolSkus.json | 2 +- ...erviceEnvironments_ListMultiRolePools.json | 2 +- ...rviceEnvironments_ListMultiRoleUsages.json | 2 +- ...AppServiceEnvironments_ListOperations.json | 2 +- .../AppServiceEnvironments_ListUsages.json | 2 +- .../AppServiceEnvironments_ListWebApps.json | 2 +- ...nments_ListWebWorkerMetricDefinitions.json | 2 +- ...rviceEnvironments_ListWebWorkerUsages.json | 2 +- ...stWorkerPoolInstanceMetricDefinitions.json | 2 +- ...erviceEnvironments_ListWorkerPoolSkus.json | 2 +- ...ppServiceEnvironments_ListWorkerPools.json | 2 +- .../AppServiceEnvironments_Reboot.json | 2 +- .../AppServiceEnvironments_Resume.json | 2 +- .../AppServiceEnvironments_Suspend.json | 2 +- ...ents_TestUpgradeAvailableNotification.json | 2 +- .../AppServiceEnvironments_Update.json | 2 +- ...ents_UpdateAseNetworkingConfiguration.json | 2 +- .../AppServiceEnvironments_Upgrade.json | 2 +- .../examples/ApplySlotConfig.json | 2 +- ...veRejectSitePrivateEndpointConnection.json | 2 +- ...jectSitePrivateEndpointConnectionSlot.json | 2 +- ...PrivateEndpointConnection_StaticSites.json | 2 +- .../examples/BackupWebApp.json | 2 +- .../examples/CloneWebApp.json | 4 +- .../examples/CloneWebAppSlot.json | 4 +- .../CreateOrUpdateAppServicePlan.json | 2 +- .../examples/CreateOrUpdateCertificate.json | 2 +- ...ateOrUpdateFunctionAppFlexConsumption.json | 4 +- ...FunctionAppFlexConsumptionWithDetails.json | 4 +- .../CreateOrUpdateSiteCertificate.json | 2 +- .../CreateOrUpdateSiteCertificateSlot.json | 2 +- .../examples/CreateOrUpdateStaticSite.json | 2 +- .../CreateOrUpdateStaticSiteAppSettings.json | 2 +- .../CreateOrUpdateStaticSiteBasicAuth.json | 2 +- ...ateOrUpdateStaticSiteBuildAppSettings.json | 2 +- ...dateStaticSiteBuildDatabaseConnection.json | 2 +- ...ateStaticSiteBuildFunctionAppSettings.json | 2 +- .../CreateOrUpdateStaticSiteCustomDomain.json | 2 +- ...eOrUpdateStaticSiteDatabaseConnection.json | 2 +- ...OrUpdateStaticSiteFunctionAppSettings.json | 2 +- .../examples/CreateOrUpdateWebApp.json | 4 +- .../examples/CreateOrUpdateWebAppSlot.json | 4 +- .../CreateUserRolesInvitationLink.json | 2 +- .../examples/DeleteAppServicePlan.json | 2 +- ...DeleteAseCustomDnsSuffixConfiguration.json | 2 +- .../examples/DeleteCertificate.json | 2 +- .../DeleteDeployWorkflowArtifacts.json | 2 +- .../examples/DeleteServerFarmSilo.json | 15 - .../examples/DeleteSiteCertificate.json | 2 +- .../examples/DeleteSiteCertificateSlot.json | 2 +- .../DeleteSitePrivateEndpointConnection.json | 2 +- ...leteSitePrivateEndpointConnectionSlot.json | 2 +- ...PrivateEndpointConnection_StaticSites.json | 2 +- .../examples/DeleteSiteSilo.json | 15 - .../examples/DeleteStaticSite.json | 2 +- .../examples/DeleteStaticSiteBuild.json | 2 +- ...leteStaticSiteBuildDatabaseConnection.json | 2 +- .../DeleteStaticSiteCustomDomain.json | 2 +- .../DeleteStaticSiteDatabaseConnection.json | 2 +- .../examples/DeleteStaticSiteUser.json | 2 +- .../examples/DeleteWebApp.json | 2 +- .../examples/DeleteWebAppBackup.json | 2 +- .../examples/DeleteWebAppSlot.json | 2 +- .../examples/DetachStaticSite.json | 2 +- ...UserProvidedFunctionAppFromStaticSite.json | 2 +- ...rovidedFunctionAppFromStaticSiteBuild.json | 2 +- .../Diagnostics_ExecuteSiteAnalysis.json | 2 +- .../Diagnostics_ExecuteSiteAnalysisSlot.json | 2 +- ...gnostics_ExecuteSiteAnalysisSlot_Slot.json | 2 +- .../Diagnostics_ExecuteSiteAnalysis_Slot.json | 2 +- .../Diagnostics_ExecuteSiteDetector.json | 2 +- .../Diagnostics_ExecuteSiteDetectorSlot.json | 2 +- ...gnostics_ExecuteSiteDetectorSlot_Slot.json | 2 +- .../Diagnostics_ExecuteSiteDetector_Slot.json | 2 +- ...GetHostingEnvironmentDetectorResponse.json | 2 +- .../examples/Diagnostics_GetSiteAnalysis.json | 2 +- .../Diagnostics_GetSiteAnalysisSlot.json | 2 +- .../Diagnostics_GetSiteAnalysisSlot_Slot.json | 2 +- .../Diagnostics_GetSiteAnalysis_Slot.json | 2 +- .../examples/Diagnostics_GetSiteDetector.json | 2 +- .../Diagnostics_GetSiteDetectorResponse.json | 2 +- ...agnostics_GetSiteDetectorResponseSlot.json | 2 +- ...tics_GetSiteDetectorResponseSlot_Slot.json | 2 +- ...gnostics_GetSiteDetectorResponse_Slot.json | 2 +- .../Diagnostics_GetSiteDetectorSlot.json | 2 +- .../Diagnostics_GetSiteDetectorSlot_Slot.json | 2 +- .../Diagnostics_GetSiteDetector_Slot.json | 2 +- ...Diagnostics_GetSiteDiagnosticCategory.json | 2 +- ...nostics_GetSiteDiagnosticCategorySlot.json | 2 +- ...cs_GetSiteDiagnosticCategorySlot_Slot.json | 2 +- ...ostics_GetSiteDiagnosticCategory_Slot.json | 2 +- ...stHostingEnvironmentDetectorResponses.json | 2 +- .../Diagnostics_ListSiteAnalyses.json | 2 +- .../Diagnostics_ListSiteAnalysesSlot.json | 2 +- ...Diagnostics_ListSiteAnalysesSlot_Slot.json | 2 +- .../Diagnostics_ListSiteAnalyses_Slot.json | 2 +- ...Diagnostics_ListSiteDetectorResponses.json | 2 +- ...nostics_ListSiteDetectorResponsesSlot.json | 2 +- ...cs_ListSiteDetectorResponsesSlot_Slot.json | 2 +- ...ostics_ListSiteDetectorResponses_Slot.json | 2 +- .../Diagnostics_ListSiteDetectors.json | 2 +- .../Diagnostics_ListSiteDetectorsSlot.json | 2 +- ...iagnostics_ListSiteDetectorsSlot_Slot.json | 2 +- .../Diagnostics_ListSiteDetectors_Slot.json | 2 +- ...gnostics_ListSiteDiagnosticCategories.json | 2 +- ...tics_ListSiteDiagnosticCategoriesSlot.json | 2 +- ...ListSiteDiagnosticCategoriesSlot_Slot.json | 2 +- ...ics_ListSiteDiagnosticCategories_Slot.json | 2 +- .../GenerateStaticSiteWorkflowPreview.json | 2 +- .../examples/GetAllStaticSites.json | 2 +- .../examples/GetAppServicePlan.json | 2 +- .../GetAseCustomDnsSuffixConfiguration.json | 2 +- .../GetAuthSettingsV2WithoutSecrets.json | 2 +- .../examples/GetCertificate.json | 2 +- .../examples/GetDeletedWebApp.json | 2 +- .../examples/GetDeletedWebAppByLocation.json | 2 +- .../examples/GetDeletedWebAppSnapshots.json | 2 +- .../examples/GetFunctionAppStacks.json | 2 +- .../GetFunctionAppStacksForLocation.json | 2 +- ...etInboundNetworkDependenciesEndpoints.json | 2 +- .../GetKeyVaultReferencesForAppSetting.json | 2 +- ...etKeyVaultReferencesForAppSettingSlot.json | 2 +- .../GetKeyVaultReferencesForAppSettings.json | 2 +- ...tKeyVaultReferencesForAppSettingsSlot.json | 2 +- .../GetLinkedBackendForStaticSite.json | 2 +- .../GetLinkedBackendForStaticSiteBuild.json | 2 +- .../GetLinkedBackendsForStaticSite.json | 2 +- .../GetLinkedBackendsForStaticSiteBuild.json | 2 +- ...tOutboundNetworkDependenciesEndpoints.json | 2 +- .../GetPublishingCredentialsPolicy.json | 2 +- .../GetPublishingCredentialsPolicySlot.json | 2 +- ...gCredentialsPolicySlot_FtpAllowedSlot.json | 2 +- ...ishingCredentialsPolicy_GetFtpAllowed.json | 2 +- .../GetResourceHealthMetadataBySite.json | 2 +- .../GetResourceHealthMetadataBySite_Slot.json | 2 +- .../examples/GetSiteCertificate.json | 2 +- .../examples/GetSiteCertificateSlot.json | 2 +- .../examples/GetSiteConfig.json | 2 +- .../examples/GetSiteDeploymentStatus.json | 2 +- .../examples/GetSiteDeploymentStatusSlot.json | 2 +- .../examples/GetSiteInstanceInfo.json | 2 +- .../examples/GetSiteInstanceInfo_Slot.json | 2 +- .../GetSitePrivateEndpointConnection.json | 2 +- .../GetSitePrivateEndpointConnectionList.json | 2 +- .../GetSitePrivateEndpointConnectionSlot.json | 2 +- ...PrivateEndpointConnection_StaticSites.json | 2 +- .../examples/GetSitePrivateLinkResources.json | 2 +- .../GetSitePrivateLinkResourcesSlot.json | 2 +- .../GetSitePrivateLinkResources_WebApps.json | 2 +- .../examples/GetSiteSilo.json | 27 - .../examples/GetStaticSite.json | 2 +- .../examples/GetStaticSiteBasicAuth.json | 2 +- .../examples/GetStaticSiteBuild.json | 2 +- .../GetStaticSiteBuildDatabaseConnection.json | 2 +- ...iteBuildDatabaseConnectionWithDetails.json | 2 +- ...GetStaticSiteBuildDatabaseConnections.json | 2 +- ...teBuildDatabaseConnectionsWithDetails.json | 2 +- .../examples/GetStaticSiteBuilds.json | 2 +- .../examples/GetStaticSiteCustomDomain.json | 2 +- .../examples/GetStaticSiteCustomDomains.json | 2 +- .../GetStaticSiteDatabaseConnection.json | 2 +- ...aticSiteDatabaseConnectionWithDetails.json | 2 +- .../GetStaticSiteDatabaseConnections.json | 2 +- ...ticSiteDatabaseConnectionsWithDetails.json | 2 +- .../examples/GetStaticSites.json | 2 +- ...ubscriptionOperationWithAsyncResponse.json | 2 +- .../examples/GetUsagesInLocation.json | 2 +- ...tUserProvidedFunctionAppForStaticSite.json | 2 +- ...ProvidedFunctionAppForStaticSiteBuild.json | 2 +- ...UserProvidedFunctionAppsForStaticSite.json | 2 +- ...rovidedFunctionAppsForStaticSiteBuild.json | 2 +- .../examples/GetWebApp.json | 2 +- .../examples/GetWebAppBackup.json | 2 +- .../examples/GetWebAppBackupWithSecrets.json | 2 +- .../examples/GetWebAppSlot.json | 2 +- .../examples/GetWebAppStacks.json | 2 +- .../examples/GetWebAppStacksForLocation.json | 2 +- .../GetWebSiteNetworkTraceOperation.json | 2 +- .../GetWebSiteNetworkTraceOperation_Slot.json | 2 +- ...etWebSiteNetworkTraceOperation_SlotV2.json | 2 +- .../GetWebSiteNetworkTraceOperation_V2.json | 2 +- .../examples/GetWebSiteNetworkTraces.json | 2 +- ...eNetworkTraces_GetNetworkTracesSlotV2.json | 2 +- .../GetWebSiteNetworkTraces_Slot.json | 2 +- .../GetWebSiteNetworkTraces_SlotV2.json | 2 +- .../examples/GetWorkflow.json | 2 +- .../examples/GetWorkflow_Slot.json | 2 +- .../KubeEnvironments_CreateOrUpdate.json | 2 +- .../examples/KubeEnvironments_Delete.json | 4 +- .../examples/KubeEnvironments_Get.json | 2 +- .../KubeEnvironments_ListByResourceGroup.json | 2 +- .../KubeEnvironments_ListBySubscription.json | 2 +- .../examples/KubeEnvironments_Update.json | 2 +- .../LastKnownGoods_GetLastKnownGood.json | 24 + .../LastKnownGoods_MarkLastKnownGood.json | 24 + .../examples/LinkBackendToStaticSite.json | 2 +- .../LinkBackendToStaticSiteBuild.json | 2 +- .../examples/ListAppServicePlans.json | 2 +- .../ListAppServicePlansByResourceGroup.json | 2 +- .../examples/ListAppSettings.json | 2 +- .../examples/ListAseRegions.json | 2 +- .../examples/ListAuthSettings.json | 2 +- .../examples/ListAuthSettingsV2.json | 2 +- .../examples/ListCertificates.json | 2 +- .../ListCertificatesByResourceGroup.json | 2 +- .../examples/ListCustomHostNameSites.json | 2 +- .../ListCustomSpecificHostNameSites.json | 2 +- .../ListDeletedWebAppsByLocation.json | 2 +- .../examples/ListManagedTrafficConfigs.json | 39 - .../examples/ListOperations.json | 2 +- .../ListPublishingCredentialsPolicies.json | 2 +- ...ListPublishingCredentialsPoliciesSlot.json | 2 +- ...ResourceHealthMetadataByResourceGroup.json | 2 +- .../ListResourceHealthMetadataBySite.json | 2 +- ...ListResourceHealthMetadataBySite_Slot.json | 2 +- ...tResourceHealthMetadataBySubscription.json | 2 +- .../examples/ListServerFarmSilos.json | 30 - .../examples/ListSiteBackupsSlot.json | 2 +- .../ListSiteCertificatesByResourceGroup.json | 2 +- ...stSiteCertificatesByResourceGroupSlot.json | 2 +- .../examples/ListSiteDeploymentStatus.json | 2 +- .../ListSiteDeploymentStatusSlot.json | 2 +- .../examples/ListSiteSilos.json | 30 - .../examples/ListSlotBackups.json | 2 +- .../examples/ListStaticSiteAppSettings.json | 2 +- .../examples/ListStaticSiteBasicAuth.json | 2 +- .../ListStaticSiteBuildAppSettings.json | 2 +- ...istStaticSiteBuildFunctionAppSettings.json | 2 +- .../ListStaticSiteBuildFunctions.json | 2 +- .../ListStaticSiteConfiguredRoles.json | 2 +- .../ListStaticSiteFunctionAppSettings.json | 2 +- .../examples/ListStaticSiteFunctions.json | 2 +- .../examples/ListStaticSiteSecrets.json | 2 +- .../examples/ListStaticSiteUsers.json | 2 +- .../examples/ListWebAppBackups.json | 2 +- .../examples/ListWebAppConfigurations.json | 2 +- .../examples/ListWebAppSlots.json | 2 +- .../examples/ListWebApps.json | 2 +- .../examples/ListWebAppsByResourceGroup.json | 2 +- .../examples/ListWorkflows.json | 2 +- ...ListWorkflowsConfigurationConnections.json | 2 +- ...orkflowsConfigurationConnections_Slot.json | 2 +- .../examples/ListWorkflows_Slot.json | 2 +- ...gs_CreateOrUpdateManagedTrafficConfig.json | 57 + ...rafficConfigs_GetManagedTrafficConfig.json | 38 + .../examples/PatchAppServicePlan.json | 2 +- .../examples/PatchCertificate.json | 2 +- .../examples/PatchSiteCertificate.json | 2 +- .../examples/PatchSiteCertificateSlot.json | 2 +- .../examples/PatchStaticSite.json | 2 +- ...atchStaticSiteBuildDatabaseConnection.json | 2 +- .../PatchStaticSiteDatabaseConnection.json | 2 +- .../examples/PostDeployWorkflowArtifacts.json | 2 +- .../PostDeployWorkflowArtifactsSlot.json | 2 +- ...UserProvidedFunctionAppWithStaticSite.json | 2 +- ...rovidedFunctionAppWithStaticSiteBuild.json | 2 +- .../examples/ResetStaticSiteApiKey.json | 2 +- .../examples/RestoreWebAppBackup.json | 4 +- ...armSilos_CreateOrUpdateServerFarmSilo.json | 59 + .../ServerFarmSilos_DeleteServerFarmSilo.json | 19 + .../ServerFarmSilos_GetServerFarmSilo.json | 31 + .../ServerFarmSilos_ListServerFarmSilos.json | 50 + .../SiteSilos_CreateOrUpdateSiteSilo.json | 97 + .../examples/SiteSilos_DeleteSiteSilo.json | 19 + .../examples/SiteSilos_GetSiteSilo.json | 45 + .../examples/SiteSilos_ListSiteSilos.json | 60 + .../StartWebSiteNetworkTraceOperation.json | 2 +- ...tartWebSiteNetworkTraceOperation_Slot.json | 2 +- ...tworkTraceOperation_StartNetworkTrace.json | 2 +- ...kTraceOperation_StartNetworkTraceSlot.json | 2 +- .../examples/StaticSiteBuildZipDeploy.json | 2 +- .../examples/StaticSiteZipDeploy.json | 2 +- .../examples/StopWebSiteNetworkTrace.json | 2 +- .../StopWebSiteNetworkTrace_Slot.json | 2 +- ...pWebSiteNetworkTrace_StopNetworkTrace.json | 2 +- ...SiteNetworkTrace_StopNetworkTraceSlot.json | 2 +- .../examples/UnlinkBackendFromStaticSite.json | 2 +- .../UnlinkBackendFromStaticSiteBuild.json | 2 +- .../examples/UpdateAppSettings.json | 2 +- ...UpdateAseCustomDnsSuffixConfiguration.json | 2 +- .../examples/UpdateAuthSettings.json | 2 +- .../examples/UpdateAuthSettingsV2.json | 2 +- .../examples/UpdateAzureStorageAccounts.json | 2 +- .../examples/UpdateMachineKey.json | 2 +- .../UpdatePublishingCredentialsPolicy.json | 2 +- ...UpdatePublishingCredentialsPolicySlot.json | 2 +- ...ntialsPolicySlot_UpdateFtpAllowedSlot.json | 2 +- ...ingCredentialsPolicy_UpdateFtpAllowed.json | 2 +- .../examples/UpdateSiteConfig.json | 2 +- .../examples/UpdateStaticSiteUser.json | 2 +- .../examples/UpdateWebApp.json | 4 +- .../examples/UpdateWebAppSlot.json | 4 +- .../ValidateLinkedBackendForStaticSite.json | 2 +- ...lidateLinkedBackendForStaticSiteBuild.json | 2 +- .../ValidateStaticSiteCustomDomain.json | 2 +- .../VerifyHostingEnvironmentVnet.json | 2 +- ...ActionRepetitionsRequestHistories_Get.json | 2 +- ...ctionRepetitionsRequestHistories_List.json | 2 +- .../WorkflowRunActionRepetitions_Get.json | 2 +- .../WorkflowRunActionRepetitions_List.json | 2 +- ...ctionRepetitions_ListExpressionTraces.json | 2 +- ...WorkflowRunActionScopeRepetitions_Get.json | 2 +- ...orkflowRunActionScopeRepetitions_List.json | 2 +- .../examples/WorkflowRunActions_Get.json | 2 +- .../examples/WorkflowRunActions_List.json | 2 +- ...rkflowRunActions_ListExpressionTraces.json | 2 +- .../examples/WorkflowRuns_Cancel.json | 2 +- .../examples/WorkflowRuns_Get.json | 2 +- .../examples/WorkflowRuns_List.json | 2 +- .../WorkflowTriggerHistories_Get.json | 2 +- .../WorkflowTriggerHistories_List.json | 2 +- .../WorkflowTriggerHistories_Resubmit.json | 4 +- .../examples/WorkflowTriggers_Get.json | 2 +- .../WorkflowTriggers_GetSchemaJson.json | 2 +- .../examples/WorkflowTriggers_List.json | 2 +- .../WorkflowTriggers_ListCallbackUrl.json | 2 +- .../examples/WorkflowTriggers_Run.json | 4 +- .../examples/WorkflowVersions_Get.json | 2 +- .../examples/WorkflowVersions_List.json | 2 +- .../Workflows_RegenerateAccessKey.json | 2 +- .../examples/Workflows_Validate.json | 2 +- .../preview/2026-06-01-preview/openapi.json | 50 +- 704 files changed, 32173 insertions(+), 615 deletions(-) create mode 100644 changed_files.txt create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_GetLastKnownGood.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_MarkLastKnownGood.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json rename specification/web/resource-manager/Microsoft.Web/AppService/{preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json => examples/2026-06-01-preview/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json} (61%) rename specification/web/resource-manager/Microsoft.Web/AppService/{preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json => examples/2026-06-01-preview/ManagedTrafficConfigs_GetManagedTrafficConfig.json} (64%) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json rename specification/web/resource-manager/Microsoft.Web/AppService/{preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json => examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json} (64%) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_DeleteServerFarmSilo.json rename specification/web/resource-manager/Microsoft.Web/AppService/{preview/2026-06-01-preview/examples/GetServerFarmSilo.json => examples/2026-06-01-preview/ServerFarmSilos_GetServerFarmSilo.json} (56%) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_ListServerFarmSilos.json rename specification/web/resource-manager/Microsoft.Web/AppService/{preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json => examples/2026-06-01-preview/SiteSilos_CreateOrUpdateSiteSilo.json} (53%) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_DeleteSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_GetSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_ListSiteSilos.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json delete mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json delete mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json delete mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_GetLastKnownGood.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_MarkLastKnownGood.json delete mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json delete mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json delete mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_GetManagedTrafficConfig.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_DeleteServerFarmSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_GetServerFarmSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_ListServerFarmSilos.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdateSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_DeleteSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_GetSiteSilo.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_ListSiteSilos.json diff --git a/changed_files.txt b/changed_files.txt new file mode 100644 index 000000000000..af6af12177b3 --- /dev/null +++ b/changed_files.txt @@ -0,0 +1,354 @@ +specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp +specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp +specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp +specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp +specification/web/resource-manager/Microsoft.Web/AppService/main.tsp +specification/web/resource-manager/Microsoft.Web/AppService/models.tsp +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json +specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json new file mode 100644 index 000000000000..427efaad1438 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json @@ -0,0 +1,47 @@ +{ + "operationId": "AiGateways_CreateOrUpdate", + "title": "CreateOrUpdateAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-03-01-preview", + "name": "aigateway1", + "resource": { + "properties": {}, + "location": "CentralUS", + "tags": { + "key1": "Value1" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json new file mode 100644 index 000000000000..c0e4b6a89dc7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json @@ -0,0 +1,14 @@ +{ + "operationId": "AiGateways_Delete", + "title": "DeleteAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-03-01-preview", + "name": "aigateway1" + }, + "responses": { + "200": {}, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json new file mode 100644 index 000000000000..90e427821a73 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json @@ -0,0 +1,26 @@ +{ + "operationId": "AiGateways_Get", + "title": "GetAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-03-01-preview", + "name": "aigateway1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json new file mode 100644 index 000000000000..ec8294d03988 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json @@ -0,0 +1,29 @@ +{ + "operationId": "AiGateways_ListByResourceGroup", + "title": "ListAiGatewaysByResourceGroup", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json new file mode 100644 index 000000000000..794d4700925f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json @@ -0,0 +1,28 @@ +{ + "operationId": "AiGateways_ListBySubscription", + "title": "ListAiGatewaysBySubscription", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "api-version": "2026-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value1" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json new file mode 100644 index 000000000000..e24945117376 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json @@ -0,0 +1,31 @@ +{ + "operationId": "AiGateways_Patch", + "title": "PatchAiGateway", + "parameters": { + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "testrg", + "api-version": "2026-03-01-preview", + "name": "aigateway1", + "properties": { + "tags": { + "key1": "Value2" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/aigateways/aigateway1", + "name": "aigateway1", + "type": "Microsoft.Web/aigateways", + "location": "CentralUS", + "tags": { + "key1": "Value2" + }, + "properties": { + "aiGatewayId": "b8f4c0c2-1e52-4c88-9a64-2c1f59b854e5" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json new file mode 100644 index 000000000000..ac3ade6f9023 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "properties": { + "cNameRecords": [ + "siteog.azurewebsites.net" + ], + "conflictingAppResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/siteog", + "customDomainVerificationFailureInfo": { + "code": "07198", + "message": "Custom domain verification failed on conflicting CNAMEs." + }, + "customDomainVerificationTest": "Passed", + "hasConflictAcrossSubscription": true, + "hasConflictOnScaleUnit": false, + "isHostnameAlreadyVerified": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_AnalyzeCustomHostname", + "title": "Analyze custom hostname for webapp." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json new file mode 100644 index 000000000000..8aa228fe28a6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/stagings", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "properties": { + "cNameRecords": [ + "siteog.azurewebsites.net" + ], + "conflictingAppResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/siteog/slots/qa", + "customDomainVerificationFailureInfo": { + "code": "07198", + "message": "Custom domain verification failed on conflicting CNAMEs." + }, + "customDomainVerificationTest": "Passed", + "hasConflictAcrossSubscription": true, + "hasConflictOnScaleUnit": false, + "isHostnameAlreadyVerified": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_AnalyzeCustomHostnameSlot", + "title": "Analyze custom hostname for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json new file mode 100644 index 000000000000..bdad092df2be --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by johndoe@company.com", + "status": "Approved" + } + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by johndoe@company.com", + "actionsRequired": "None", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by johndoe@company.com", + "actionsRequired": "None", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection", + "title": "Approves or rejects a private endpoint connection." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json new file mode 100644 index 000000000000..e133aef7786c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "vnetInfo": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default" + } + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + }, + "202": { + "body": { + "value": [] + }, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + } + }, + "operationId": "AppServiceEnvironments_ChangeVnet", + "title": "Move an App Service Environment to a different VNET." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json new file mode 100644 index 000000000000..58507447c631 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json @@ -0,0 +1,187 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "hostingEnvironmentEnvelope": { + "kind": "Asev3", + "location": "South Central US", + "properties": { + "virtualNetwork": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/delegated" + } + } + }, + "location": "South Central US", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "201": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "202": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_CreateOrUpdate", + "title": "Create or update an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json new file mode 100644 index 000000000000..746710039630 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "multiRolePoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Medium" + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_CreateOrUpdateMultiRolePool", + "title": "Create or update a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json new file mode 100644 index 000000000000..5d022c249f32 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "multiRolePoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Medium" + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateMultiRolePool", + "title": "Create or update a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json new file mode 100644 index 000000000000..7452ba4b9b13 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Small" + } + }, + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateWorkerPool", + "title": "Get properties of a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json new file mode 100644 index 000000000000..5a331e3bd804 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolEnvelope": { + "properties": { + "workerCount": 3, + "workerSize": "Small" + } + }, + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_CreateOrUpdateWorkerPool", + "title": "Get properties of a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json new file mode 100644 index 000000000000..4499c712ad78 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + }, + "204": { + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Delete", + "title": "Delete an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json new file mode 100644 index 000000000000..feccbff76356 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "202": { + "body": {}, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + }, + "204": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_DeletePrivateEndpointConnection", + "title": "Deletes a private endpoint connection." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json new file mode 100644 index 000000000000..dc1038735eb7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json @@ -0,0 +1,67 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Get", + "title": "Get the properties of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json new file mode 100644 index 000000000000..ef47dcc02ee9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json @@ -0,0 +1,38 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "networking", + "type": "Microsoft.Web/hostingEnvironments/configurations/networking", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetAseV3NetworkingConfiguration", + "title": "Get networking configuration of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json new file mode 100644 index 000000000000..bd98d3e2ddaf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "diagnosticsName": "test-diagnostic", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-diagnostic" + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetDiagnosticsItem", + "title": "Get a diagnostics item for an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json new file mode 100644 index 000000000000..0dcaae19abe3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/hostingEnvironments/multiRolePools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/multiRolePools/default", + "properties": { + "instanceNames": [ + "10.7.1.8", + "10.7.1.9" + ], + "workerCount": 2, + "workerSize": "Standard_D1_V2" + }, + "sku": { + "name": "Q1", + "capacity": 2, + "family": "Q", + "size": "Q1", + "tier": "Quantum" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetMultiRolePool", + "title": "Get properties of a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json new file mode 100644 index 000000000000..b5fe06e8948f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Please approve my connection, thanks!", + "actionsRequired": "None", + "status": "Disconnecting" + }, + "provisioningState": "Pending" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetPrivateEndpointConnection", + "title": "Gets a private endpoint connection." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json new file mode 100644 index 000000000000..c44f791d1328 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "fa38656c-034e-43d8-adce-fe06ce039c98", + "type": "Microsoft.Web/hostingEnvironments/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/privateEndpointConnections/fa38656c-034e-43d8-adce-fe06ce039c98", + "properties": { + "ipAddresses": [], + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/test-privateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Please approve my connection, thanks!", + "actionsRequired": "None", + "status": "Disconnecting" + }, + "provisioningState": "Pending" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetPrivateEndpointConnectionList", + "title": "Gets the list of private endpoints associated with a hosting environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json new file mode 100644 index 000000000000..e664d7a84632 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetPrivateLinkResources", + "title": "Gets the private link resources." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json new file mode 100644 index 000000000000..1170e76d004b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json @@ -0,0 +1,43 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments/capacities", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/capacities/virtualip", + "properties": { + "internalIpAddress": null, + "outboundIpAddresses": [ + "20.112.141.120" + ], + "serviceIpAddress": "20.112.141.120", + "vipMappings": [ + { + "inUse": false, + "internalHttpPort": 20003, + "internalHttpsPort": 20001, + "serviceName": null, + "virtualIP": "20.112.141.135" + }, + { + "inUse": false, + "internalHttpPort": 20004, + "internalHttpsPort": 20002, + "serviceName": null, + "virtualIP": "20.112.141.150" + } + ] + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetVipInfo", + "title": "Get IP addresses assigned to an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json new file mode 100644 index 000000000000..83d875d4f321 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "workerPool1" + }, + "responses": { + "200": { + "body": { + "name": "workerPool1", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool1", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 2, + "workerSize": "Small", + "workerSizeId": 0 + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetWorkerPool", + "title": "Get properties of a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json new file mode 100644 index 000000000000..642ad6f1528e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_List", + "title": "Get all App Service Environments for a subscription." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json new file mode 100644 index 000000000000..5da2a93be642 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json @@ -0,0 +1,63 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "test-asp", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/serverfarms/test-asp", + "kind": "app", + "location": "Central US EUAP", + "properties": { + "elasticScaleEnabled": false, + "freeOfferExpirationTime": null, + "geoRegion": "Central US EUAP", + "hostingEnvironmentProfile": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase" + }, + "hyperV": false, + "isSpot": false, + "isXenon": false, + "kubeEnvironmentProfile": null, + "maximumElasticWorkerCount": 0, + "maximumNumberOfWorkers": 100, + "numberOfSites": 0, + "perSiteScaling": false, + "provisioningState": null, + "reserved": false, + "resourceGroup": "test-rg", + "spotExpirationTime": null, + "status": "Ready", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "targetWorkerCount": 1, + "targetWorkerSizeId": 0, + "workerTierName": null, + "zoneRedundant": false + }, + "sku": { + "name": "I1", + "capacity": 0, + "family": "I", + "size": "I1", + "tier": "Isolated" + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListAppServicePlans", + "title": "Get all App Service plans in an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json new file mode 100644 index 000000000000..7c672193663b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListByResourceGroup", + "title": "Get all App Service Environments in a resource group." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json new file mode 100644 index 000000000000..ed687e58d312 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json @@ -0,0 +1,59 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": null, + "availableCapacity": 0, + "computeMode": "Dedicated", + "excludeFromCapacityAllocation": false, + "isApplicableForAllComputeModes": false, + "isLinux": false, + "siteMode": null, + "totalCapacity": 1, + "unit": null, + "workerSize": null, + "workerSizeId": 0 + }, + { + "name": null, + "availableCapacity": 0, + "computeMode": "Dedicated", + "excludeFromCapacityAllocation": false, + "isApplicableForAllComputeModes": false, + "isLinux": false, + "siteMode": null, + "totalCapacity": 1, + "unit": null, + "workerSize": null, + "workerSizeId": 1 + }, + { + "name": null, + "availableCapacity": 0, + "computeMode": "Dedicated", + "excludeFromCapacityAllocation": false, + "isApplicableForAllComputeModes": false, + "isLinux": false, + "siteMode": null, + "totalCapacity": 1, + "unit": null, + "workerSize": null, + "workerSizeId": 2 + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListCapacities", + "title": "Get the used, available, and total worker capacity an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json new file mode 100644 index 000000000000..c8129d9eb83a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": null, + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListDiagnostics", + "title": "Get diagnostic information for an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json new file mode 100644 index 000000000000..fdc50821d3e5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/cpupercentage" + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/MemoryPercentage" + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/DiskQueueLength" + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/HttpQueueLength" + }, + { + "name": "BytesReceived", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesReceived" + }, + { + "name": "BytesSent", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesSent" + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRoleMetricDefinitions", + "title": "Get metric definitions for a multi-role pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json new file mode 100644 index 000000000000..4e3ef0874d91 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json @@ -0,0 +1,45 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "instance": "10.7.1.8", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/cpupercentage" + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/MemoryPercentage" + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/DiskQueueLength" + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/HttpQueueLength" + }, + { + "name": "BytesReceived", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesReceived" + }, + { + "name": "BytesSent", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/metricdefinitions/BytesSent" + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions", + "title": "Get metric definitions for a specific instance of a multi-role pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json new file mode 100644 index 000000000000..f15916c3ffa9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json @@ -0,0 +1,160 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "S2", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "S3", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "S4", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "O2", + "tier": "Optimized" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "O3", + "tier": "Optimized" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "O4", + "tier": "Optimized" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q1", + "tier": "Quantum" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q2", + "tier": "Quantum" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q3", + "tier": "Quantum" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 247, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/multiRolePools", + "sku": { + "name": "Q4", + "tier": "Quantum" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRolePoolSkus", + "title": "Get available SKUs for scaling a multi-role pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json new file mode 100644 index 000000000000..4ddd69a3351e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/hostingEnvironments/multiRolePools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/multiRolePools/default", + "properties": { + "instanceNames": [ + "10.7.1.8", + "10.7.1.9" + ], + "workerCount": 2, + "workerSize": "Standard_D1_V2" + }, + "sku": { + "name": "Q1", + "capacity": 2, + "family": "Q", + "size": "Q1", + "tier": "Quantum" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRolePools", + "title": "Get all multi-role pools." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json new file mode 100644 index 000000000000..c809f5120bff --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListMultiRoleUsages", + "title": "Get usage metrics for a multi-role pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json new file mode 100644 index 000000000000..b97d8269ba4e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [], + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListOperations", + "title": "List all currently running operations on the App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json new file mode 100644 index 000000000000..a1ed105eb6d1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": { + "localizedValue": "File System Storage", + "value": "FileSystemStorage" + }, + "currentValue": 37888, + "limit": 1099511627776, + "nextResetTime": "9999-12-31T23:59:59.9999999Z", + "unit": "Bytes" + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListUsages", + "title": "Get global usage metrics of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json new file mode 100644 index 000000000000..00afe44dafea --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json @@ -0,0 +1,84 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "test-site", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-site", + "location": "Central US EUAP", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "2982A67AD520FBCD070650FC77814FB03B62927C6EFCA2F5FF3BF5DC60088845", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "test-site.test-ase.p.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "test-site.test-ase.p.azurewebsites.net", + "test-site.scm.test-ase.p.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "test-site.test-ase.p.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "test-site.scm.test-ase.p.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "test-site.test-ase.p.azurewebsites.net" + ], + "hostNamesDisabled": false, + "hostingEnvironmentProfile": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase" + }, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2022-04-08T20:41:04.1233333", + "outboundIpAddresses": "20.112.141.120", + "possibleOutboundIpAddresses": "20.112.141.120", + "redundancyMode": "None", + "repositorySiteName": "test-site", + "reserved": false, + "resourceGroup": "test-rg", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/serverfarms/test-serverfarm", + "siteConfig": { + "functionAppScaleLimit": 0, + "linuxFxVersion": "", + "minimumElasticInstanceCount": 0, + "numberOfWorkers": 1 + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWebApps", + "title": "Get all apps in an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json new file mode 100644 index 000000000000..cb6377d92673 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/CpuPercentage", + "properties": null + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/MemoryPercentage", + "properties": null + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/DiskQueueLength", + "properties": null + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/HttpQueueLength", + "properties": null + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWebWorkerMetricDefinitions", + "title": "Get metric definitions for a worker pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json new file mode 100644 index 000000000000..8e60943625ce --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWebWorkerUsages", + "title": "Get usage metrics for a worker pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json new file mode 100644 index 000000000000..a987f8354b6c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "instance": "10.8.0.7", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "0" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "CpuPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/CpuPercentage", + "properties": null + }, + { + "name": "MemoryPercentage", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/MemoryPercentage", + "properties": null + }, + { + "name": "DiskQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/DiskQueueLength", + "properties": null + }, + { + "name": "HttpQueueLength", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/0/metricDefinitions/HttpQueueLength", + "properties": null + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions", + "title": "Get metric definitions for a specific instance of a worker pool of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json new file mode 100644 index 000000000000..0f57ba4510af --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json @@ -0,0 +1,91 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workerPoolName": "workerPool1" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S1", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S2", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S3", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "S4", + "tier": "Standard" + } + }, + { + "capacity": { + "default": 2, + "elasticMaximum": null, + "maximum": 53, + "minimum": 2, + "scaleType": "automatic" + }, + "resourceType": "Microsoft.Web/hostingEnvironments/workerPools", + "sku": { + "name": "O1", + "tier": "Optimized" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWorkerPoolSkus", + "title": "Get available SKUs for scaling a worker pool." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json new file mode 100644 index 000000000000..e7340e69bf3f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json @@ -0,0 +1,56 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "workerPool1", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool1", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 2, + "workerSize": "Small", + "workerSizeId": 0 + } + }, + { + "name": "workerPool2", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool2", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 0, + "workerSize": "Small", + "workerSizeId": 1 + } + }, + { + "name": "workerPool3", + "type": "Microsoft.Web/hostingEnvironments/workerPools", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/workerPools/workerPool3", + "kind": "ASEV1", + "properties": { + "instanceNames": [], + "workerCount": 0, + "workerSize": "Small", + "workerSizeId": 2 + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_ListWorkerPools", + "title": "Get all worker pools of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json new file mode 100644 index 000000000000..a204382c11b6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Reboot", + "title": "Reboot all machines in an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json new file mode 100644 index 000000000000..e8c14d5fc92e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + }, + "202": { + "body": { + "value": [] + }, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + } + }, + "operationId": "AppServiceEnvironments_Resume", + "title": "Resume an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json new file mode 100644 index 000000000000..567d05f8d80e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [] + }, + "headers": {} + }, + "202": { + "body": { + "value": [] + }, + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/operations/f6a27306-3ee3-4e6b-997d-3ba2024b85e6?api-version=2019-08-01", + "x-ms-routing-request-id": "NORTHCENTRALUS:20220408T212612Z:79bd0bce-5524-4fd1-ada0-1d8c86263d17" + } + } + }, + "operationId": "AppServiceEnvironments_Suspend", + "title": "Suspend an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json new file mode 100644 index 000000000000..dcf3b529d806 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleHostingEnvironment", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_TestUpgradeAvailableNotification", + "title": "Send a test notification that an upgrade is available for this App Service Environment" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json new file mode 100644 index 000000000000..8d517d34eaf8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json @@ -0,0 +1,185 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "hostingEnvironmentEnvelope": { + "properties": { + "frontEndScaleFactor": 20, + "virtualNetwork": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated" + } + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "201": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + }, + "202": { + "body": { + "name": "test-ase", + "type": "Microsoft.Web/hostingEnvironments", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase", + "kind": "ASEV3", + "location": "South Central US", + "properties": { + "clusterSettings": null, + "dedicatedHostCount": 0, + "dnsSuffix": "test-ase.p.azurewebsites.net", + "frontEndScaleFactor": 15, + "hasLinuxWorkers": true, + "internalLoadBalancingMode": "None", + "ipsslAddressCount": 0, + "maximumNumberOfMachines": 250, + "multiRoleCount": null, + "multiSize": "Standard_D2d_v4", + "networkingConfiguration": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": false, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": false, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "provisioningState": "Succeeded", + "status": "Ready", + "suspended": false, + "userWhitelistedIpRanges": null, + "virtualNetwork": { + "name": "delegated", + "type": "Microsoft.Network/virtualNetworks/subnets", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Network/virtualNetworks/test-subnet/subnets/delegated", + "subnet": "" + }, + "zoneRedundant": false + }, + "tags": {} + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_Update", + "title": "Create or update an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json new file mode 100644 index 000000000000..fb477539eb31 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "aseNetworkingConfiguration": { + "properties": { + "ftpEnabled": true, + "remoteDebugEnabled": true + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "networking", + "type": "Microsoft.Web/hostingEnvironments/configurations/networking", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/networking", + "properties": { + "allowNewPrivateEndpointConnections": false, + "externalInboundIpAddresses": [ + "52.153.248.36" + ], + "ftpEnabled": true, + "inboundIpAddressOverride": null, + "internalInboundIpAddresses": [], + "linuxOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ], + "remoteDebugEnabled": true, + "windowsOutboundIpAddresses": [ + "20.88.241.56", + "20.88.241.9" + ] + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateAseNetworkingConfiguration", + "title": "Update networking configuration of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json new file mode 100644 index 000000000000..5fa952c0a017 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "name": "SampleHostingEnvironment", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "AppServiceEnvironments_Upgrade", + "title": "Initiate an upgrade on an App Service Environment" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json new file mode 100644 index 000000000000..b954966d07a2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slotSwapEntity": { + "preserveVnet": true, + "targetSlot": "staging" + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "headers": {} + } + }, + "operationId": "WebApps_ApplySlotConfigToProduction", + "title": "Apply web app slot config" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json new file mode 100644 index 000000000000..b4cbc945b6b4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json @@ -0,0 +1,62 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + } + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "WebApps_ApproveOrRejectPrivateEndpointConnection", + "title": "Approves or rejects a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json new file mode 100644 index 000000000000..580180b23db0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json @@ -0,0 +1,63 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + } + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "WebApps_ApproveOrRejectPrivateEndpointConnectionSlot", + "title": "Approves or rejects a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json new file mode 100644 index 000000000000..f47cf2f34825 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json @@ -0,0 +1,62 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "privateEndpointWrapper": { + "properties": { + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + } + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "connection", + "type": "Microsoft.Web/sites/privateEndpointConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_ApproveOrRejectPrivateEndpointConnection", + "title": "Approves or rejects a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json new file mode 100644 index 000000000000..f065d190c995 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json @@ -0,0 +1,76 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "request": { + "properties": { + "backupName": "abcdwe", + "backupSchedule": { + "frequencyInterval": 7, + "frequencyUnit": "Day", + "keepAtLeastOneBackup": true, + "retentionPeriodInDays": 30, + "startTime": "2022-09-02T17:33:11.641Z" + }, + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "enabled": true, + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=" + } + } + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-02T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + }, + "headers": {} + } + }, + "operationId": "WebApps_Backup", + "title": "Backup web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json new file mode 100644 index 000000000000..1c14b78d3763 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json @@ -0,0 +1,265 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "cloningInfo": { + "appSettingsOverrides": { + "Setting1": "NewValue1", + "Setting3": "NewValue5" + }, + "cloneCustomHostNames": true, + "cloneSourceControl": true, + "configureLoadBalancing": false, + "hostingEnvironment": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/hostingenvironments/aseforsites", + "overwrite": false, + "sourceWebAppId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/sites/srcsiteg478", + "sourceWebAppLocation": "West Europe" + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Clone web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json new file mode 100644 index 000000000000..846dc1740f15 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json @@ -0,0 +1,266 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "cloningInfo": { + "appSettingsOverrides": { + "Setting1": "NewValue1", + "Setting3": "NewValue5" + }, + "cloneCustomHostNames": true, + "cloneSourceControl": true, + "configureLoadBalancing": false, + "hostingEnvironment": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/hostingenvironments/aseforsites", + "overwrite": false, + "sourceWebAppId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg456/providers/Microsoft.Web/sites/srcsiteg478/slot/qa", + "sourceWebAppLocation": "West Europe" + } + } + }, + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdateSlot", + "title": "Clone web app slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json new file mode 100644 index 000000000000..3d368785135e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json @@ -0,0 +1,84 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-03-01-preview", + "appServicePlan": { + "kind": "app", + "location": "East US", + "properties": {}, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "asyncScalingEnabled": false, + "geoRegion": "East US", + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "asyncScalingEnabled": true, + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0" + } + } + }, + "operationId": "AppServicePlans_CreateOrUpdate", + "title": "Create Or Update App Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json new file mode 100644 index 000000000000..9b4d367fe7c7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "certificateEnvelope": { + "location": "East US", + "properties": { + "hostNames": [ + "ServerCert" + ], + "password": "" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "Certificates_CreateOrUpdate", + "title": "Create Or Update Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json new file mode 100644 index 000000000000..4a9aa2b4d679 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json @@ -0,0 +1,353 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "functionapp,linux", + "location": "East US", + "properties": { + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100 + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "siteConfig": { + "appSettings": [ + { + "name": "AzureWebJobsStorage", + "value": "DefaultEndpointsProtocol=https;AccountName=StorageAccountName;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + }, + { + "name": "APPLICATIONINSIGHTS_CONNECTION_STRING", + "value": "InstrumentationKey=Sanitized;IngestionEndpoint=Sanitized;LiveEndpoint=Sanitized" + } + ] + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": null, + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": null + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": null, + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": null + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Create or Update Flex Consumption function app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json new file mode 100644 index 000000000000..16dbb08c6891 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json @@ -0,0 +1,382 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "functionapp,linux", + "location": "East US", + "properties": { + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": [ + { + "name": "http", + "instanceCount": 2 + } + ], + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": { + "http": { + "perInstanceConcurrency": 16 + } + } + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "siteConfig": { + "appSettings": [ + { + "name": "AzureWebJobsStorage", + "value": "DefaultEndpointsProtocol=https;AccountName=StorageAccountName;AccountKey=Sanitized;EndpointSuffix=core.windows.net" + }, + { + "name": "APPLICATIONINSIGHTS_CONNECTION_STRING", + "value": "InstrumentationKey=Sanitized;IngestionEndpoint=Sanitized;LiveEndpoint=Sanitized" + } + ] + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": [ + { + "name": "http", + "instanceCount": 2 + } + ], + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": { + "http": { + "perInstanceConcurrency": 16 + } + } + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": false, + "clientCertEnabled": false, + "containerSize": 2048, + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "functionAppConfig": { + "deployment": { + "storage": { + "type": "blobContainer", + "authentication": { + "type": "StorageAccountConnectionString", + "storageAccountConnectionStringName": "TheAppSettingName" + }, + "value": "https://storageAccountName.blob.core.windows.net/containername" + } + }, + "runtime": { + "name": "python", + "version": "3.11" + }, + "scaleAndConcurrency": { + "alwaysReady": [ + { + "name": "http", + "instanceCount": 2 + } + ], + "instanceMemoryMB": 2048, + "maximumInstanceCount": 100, + "triggers": { + "http": { + "perInstanceConcurrency": 16 + } + } + }, + "siteUpdateStrategy": { + "type": "RollingUpdate" + } + }, + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "httpsOnly": true, + "hyperV": false, + "isXenon": false, + "lastModifiedTimeUtc": "2024-01-09T00:24:54.8", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "publicNetworkAccess": "Enabled", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": null, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "ipSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "keyVaultReferenceIdentity": "", + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmIpSecurityRestrictions": [ + { + "name": "Allow all", + "description": "Allow all access", + "action": "Allow", + "ipAddress": "Any", + "priority": 2147483647 + } + ], + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": false, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Create or Update Flex Consumption function app with details" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json new file mode 100644 index 000000000000..b690adc26358 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json @@ -0,0 +1,62 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateEnvelope": { + "location": "East US", + "properties": { + "hostNames": [ + "ServerCert" + ], + "password": "" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + }, + "201": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_CreateOrUpdate", + "title": "Create Or Update Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json new file mode 100644 index 000000000000..d0bff32e651c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json @@ -0,0 +1,63 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateEnvelope": { + "location": "East US", + "properties": { + "hostNames": [ + "ServerCert" + ], + "password": "" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + }, + "201": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_CreateOrUpdateSlot", + "title": "Create Or Update Certificate for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json new file mode 100644 index 000000000000..4de065aea990 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json @@ -0,0 +1,83 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "staticSiteEnvelope": { + "location": "West US 2", + "properties": { + "branch": "master", + "buildProperties": { + "apiLocation": "api", + "appArtifactLocation": "build", + "appLocation": "app" + }, + "repositoryToken": "repoToken123", + "repositoryUrl": "https://github.com/username/RepoName" + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSite", + "title": "Create or update a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json new file mode 100644 index 000000000000..5783f672072e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteAppSettings", + "title": "Creates or updates the app settings of a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json new file mode 100644 index 000000000000..faa06f5277b8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "basicAuthEnvelope": { + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "password": "**********************", + "secretUrl": null + } + }, + "basicAuthName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/basicAuth/default", + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "secretState": "Password", + "secretUrl": null + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateBasicAuth", + "title": "Creates or updates basic auth properties for a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json new file mode 100644 index 000000000000..623e50cbd54f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteBuildAppSettings", + "title": "Creates or updates the function app settings of a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..544fec80e6a5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": { + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateBuildDatabaseConnection", + "title": "Create or update a database connection for a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json new file mode 100644 index 000000000000..4b4f97223e74 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteBuildFunctionAppSettings", + "title": "Creates or updates the function app settings of a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json new file mode 100644 index 000000000000..1e435fbb6bab --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "staticSiteCustomDomainRequestPropertiesEnvelope": { + "properties": {} + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + } + }, + "202": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteCustomDomain", + "title": "Create or update a custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..60a45c4e0a97 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": { + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateDatabaseConnection", + "title": "Create or update a database connection for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json new file mode 100644 index 000000000000..535b20da9036 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "appSettings": { + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/config/appSettings", + "properties": { + "setting1": "someval", + "setting2": "someval2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateOrUpdateStaticSiteFunctionAppSettings", + "title": "Creates or updates the function app settings of a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json new file mode 100644 index 000000000000..aaded9c688a9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json @@ -0,0 +1,264 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientAffinityProxyEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdate", + "title": "Create or Update web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json new file mode 100644 index 000000000000..14d5d49ad0aa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json @@ -0,0 +1,255 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "kind": "app", + "location": "East US", + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientAffinityProxyEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_CreateOrUpdateSlot", + "title": "Create or Update Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json new file mode 100644 index 000000000000..5a91d6255309 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "staticSiteUserRolesInvitationEnvelope": { + "properties": { + "domain": "happy-sea-15afae3e.azurestaticwebsites.net", + "numHoursToExpiration": 1, + "provider": "aad", + "roles": "admin,contributor", + "userDetails": "username" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": { + "expiresOn": "2020-02-28T16:53:56.211Z", + "invitationUrl": "https://happy-sea-15afae3e.azurestaticwebsites.net?invite=asdf" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_CreateUserRolesInvitationLink", + "title": "Create an invitation link for a user for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json new file mode 100644 index 000000000000..413b00dc40f1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json @@ -0,0 +1,14 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "AppServicePlans_Delete", + "title": "Delete App Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json new file mode 100644 index 000000000000..951740b37683 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + }, + "204": { + "body": {}, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_DeleteAseCustomDnsSuffixConfiguration", + "title": "Delete ASE custom DNS suffix configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json new file mode 100644 index 000000000000..fd3398522ed8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json @@ -0,0 +1,14 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "Certificates_Delete", + "title": "Delete Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json new file mode 100644 index 000000000000..a13edb2b1d48 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowArtifacts": { + "filesToDelete": [ + "test/workflow.json", + "test/" + ] + } + }, + "responses": { + "200": {} + }, + "operationId": "WebApps_DeployWorkflowArtifacts", + "title": "Delete workflow artifacts" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json new file mode 100644 index 000000000000..8cbce425a7aa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "SiteCertificates_Delete", + "title": "Delete Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json new file mode 100644 index 000000000000..553b8e65786f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "SiteCertificates_DeleteSlot", + "title": "Delete Certificate for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json new file mode 100644 index 000000000000..df88dc325b09 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {} + }, + "202": { + "body": {}, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": { + "body": {} + } + }, + "operationId": "WebApps_DeletePrivateEndpointConnection", + "title": "Delete a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json new file mode 100644 index 000000000000..065b7a1a4d34 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {} + }, + "202": { + "body": {}, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": { + "body": {} + } + }, + "operationId": "WebApps_DeletePrivateEndpointConnectionSlot", + "title": "Delete a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json new file mode 100644 index 000000000000..7590d82f3bac --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {} + }, + "202": { + "body": {}, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": { + "body": {} + } + }, + "operationId": "StaticSites_DeletePrivateEndpointConnection", + "title": "Delete a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json new file mode 100644 index 000000000000..0ffa049a02a1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_DeleteStaticSite", + "title": "Delete a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json new file mode 100644 index 000000000000..503347df844d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + }, + "204": {} + }, + "operationId": "StaticSites_DeleteStaticSiteBuild", + "title": "Delete a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..848a9ce1299b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DeleteBuildDatabaseConnection", + "title": "Delete a database connection from a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json new file mode 100644 index 000000000000..8c73b4d2b880 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_DeleteStaticSiteCustomDomain", + "title": "Delete a custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..f97cb727ce2d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DeleteDatabaseConnection", + "title": "Delete a database connection from a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json new file mode 100644 index 000000000000..e4cdb54d3097 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "authprovider": "aad", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "userid": "1234" + }, + "responses": { + "200": {} + }, + "operationId": "StaticSites_DeleteStaticSiteUser", + "title": "Delete a user for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json new file mode 100644 index 000000000000..7034eca9195d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {}, + "404": {} + }, + "operationId": "WebApps_Delete", + "title": "Delete Web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json new file mode 100644 index 000000000000..c55213dfc53d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "backupId": "12345", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "404": {} + }, + "operationId": "WebApps_DeleteBackup", + "title": "Delete web app backup" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json new file mode 100644 index 000000000000..736fc64b4b11 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {}, + "404": {} + }, + "operationId": "WebApps_DeleteSlot", + "title": "Delete Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json new file mode 100644 index 000000000000..5451cbe355e2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_DetachStaticSite", + "title": "Detach a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json new file mode 100644 index 000000000000..bce7e778a0d8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DetachUserProvidedFunctionAppFromStaticSite", + "title": "Detach the user provided function app from the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json new file mode 100644 index 000000000000..7076bef08871 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "12", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_DetachUserProvidedFunctionAppFromStaticSiteBuild", + "title": "Detach the user provided function app from the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json new file mode 100644 index 000000000000..0ba41ca60056 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysis", + "title": "Execute site analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json new file mode 100644 index 000000000000..1648ef7ad14f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysis", + "title": "Execute site slot analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json new file mode 100644 index 000000000000..6ae336ec6bf5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysisSlot", + "title": "Execute site slot analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json new file mode 100644 index 000000000000..c19a7efcded3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json @@ -0,0 +1,128 @@ +{ + "parameters": { + "analysisName": "apprestartanalyses", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "events": [ + { + "type": "ServiceIncident", + "endTime": "2017-11-06T22:21:48Z", + "message": "Your application process was restarted as application environment variables changed. This can most likely occur due to update in app settings or swap operation. This event occurred multiple times during the day.", + "metaData": [ + [ + { + "name": "feature", + "value": "auditlogs" + }, + { + "name": "displayedName", + "value": "Check Audit Logs" + } + ] + ], + "priority": 0, + "solutions": [], + "source": null, + "startTime": "2017-11-06T22:21:50Z" + } + ], + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "nonCorrelatedDetectors": [], + "payload": [ + { + "data": [], + "detectorMetaData": null, + "metrics": [ + { + "name": "All Application Stop Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": null, + "values": [ + { + "roleInstance": "RD00155D3C15BE", + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:00:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3C15C1", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "roleInstance": "RD00155D3BE0FB", + "timestamp": "2017-11-06T00:10:00Z", + "total": 2 + }, + { + "isAggregated": true, + "timestamp": "2017-11-06T00:10:00Z", + "total": 4 + } + ] + }, + { + "name": "User Events", + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z", + "timeGrain": "00:05:00", + "unit": "", + "values": [ + { + "isAggregated": true, + "timestamp": "2017-11-06T22:20:00Z", + "total": 3 + }, + { + "roleInstance": "RD00155D3C09FC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C2ADC", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + }, + { + "roleInstance": "RD00155D3C214E", + "timestamp": "2017-11-06T22:20:00Z", + "total": 1 + } + ] + } + ], + "source": "workerprocessrecycle" + } + ], + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteAnalysisSlot", + "title": "Execute site analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json new file mode 100644 index 000000000000..8a664df9d36f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetector", + "title": "Execute site detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json new file mode 100644 index 000000000000..e53a16cb7eef --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetector", + "title": "Execute site slot detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json new file mode 100644 index 000000000000..e83f0acdc4cf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetectorSlot", + "title": "Execute site slot detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json new file mode 100644 index 000000000000..a214efe53e6b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/detectors/sitecrashes", + "properties": { + "abnormalTimePeriods": [ + { + "endTime": "2017-11-06T22:50:00Z", + "solutions": [], + "startTime": "2017-11-05T22:50:00Z" + } + ], + "endTime": "2017-11-06T22:50:00Z", + "startTime": "2017-11-05T22:50:00Z" + } + } + } + }, + "operationId": "Diagnostics_ExecuteSiteDetectorSlot", + "title": "Execute site detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json new file mode 100644 index 000000000000..1d694b9dcc18 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json @@ -0,0 +1,135 @@ +{ + "parameters": { + "name": "SampleAppServiceEnvironment", + "api-version": "2026-03-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your apps on this app service environment received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes all the requests to all applications running on this app service environment.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetHostingEnvironmentDetectorResponse", + "title": "Get App Service Environment Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json new file mode 100644 index 000000000000..62b16480902a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysis", + "title": "Get App Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json new file mode 100644 index 000000000000..68e2be370b8e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysis", + "title": "Get App Slot Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json new file mode 100644 index 000000000000..5713921fb76a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysisSlot", + "title": "Get App Slot Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json new file mode 100644 index 000000000000..1a79eeae1656 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "analysisName": "appanalysis", + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + } + } + }, + "operationId": "Diagnostics_GetSiteAnalysisSlot", + "title": "Get App Analysis" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json new file mode 100644 index 000000000000..f613a792d3f6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetector", + "title": "Get App Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json new file mode 100644 index 000000000000..a6ab3c4aeccf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponse", + "title": "Get App Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json new file mode 100644 index 000000000000..27a660cf2e90 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponse", + "title": "Get App Slot Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json new file mode 100644 index 000000000000..32782df2cae6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponseSlot", + "title": "Get App Slot Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json new file mode 100644 index 000000000000..9ab7105958db --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json @@ -0,0 +1,136 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "runtimeavailability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "runtimeavailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability", + "properties": { + "dataset": [ + { + "renderingProperties": { + "description": "This detector breaks down the number of requests that your app received for each status code.", + "title": "Requests by Status Code" + }, + "table": { + "columns": [ + { + "columnName": "PreciseTimeStamp", + "columnType": "datetime", + "dataType": "DateTime" + }, + { + "columnName": "count_Http2xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http3xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http4xx", + "columnType": "long", + "dataType": "Int64" + }, + { + "columnName": "count_Http5xx", + "columnType": "long", + "dataType": "Int64" + } + ], + "rows": [ + [ + "2018-03-27T00:25:00Z", + "772705", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:30:00Z", + "787069", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:35:00Z", + "781627", + "0", + "1", + "0" + ], + [ + "2018-03-27T00:40:00Z", + "785017", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:45:00Z", + "783518", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:50:00Z", + "785783", + "0", + "0", + "0" + ], + [ + "2018-03-27T00:55:00Z", + "772874", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:00:00Z", + "787162", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:05:00Z", + "782036", + "0", + "0", + "0" + ], + [ + "2018-03-27T01:10:00Z", + "784642", + "0", + "0", + "0" + ] + ], + "tableName": "Table_0" + } + } + ], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorResponseSlot", + "title": "Get App Detector Response" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json new file mode 100644 index 000000000000..9849ccb2445c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetector", + "title": "Get App Slot Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json new file mode 100644 index 000000000000..cd80cc6c53b3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorSlot", + "title": "Get App Slot Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json new file mode 100644 index 000000000000..4cc80a8ba971 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "detectorName": "sitecrashes", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + } + } + }, + "operationId": "Diagnostics_GetSiteDetectorSlot", + "title": "Get App Detector" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json new file mode 100644 index 000000000000..bd3780216fbb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategory", + "title": "Get App Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json new file mode 100644 index 000000000000..bd722b380ee6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategory", + "title": "Get App Slot Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json new file mode 100644 index 000000000000..b57f96108cba --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategorySlot", + "title": "Get App Slot Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json new file mode 100644 index 000000000000..35a82c113ac5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json @@ -0,0 +1,23 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + } + }, + "operationId": "Diagnostics_GetSiteDiagnosticCategorySlot", + "title": "Get App Diagnostic Category" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json new file mode 100644 index 000000000000..5f36849eb78e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "SampleAppServiceEnvironment", + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/hostingEnvironments/SampleAppServiceEnvironment/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes all the requests to all applications running on this app service environment.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListHostingEnvironmentDetectorResponses", + "title": "Get App Service Environment Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json new file mode 100644 index 000000000000..af8f377c246d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalyses", + "title": "List App Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json new file mode 100644 index 000000000000..4429f8181617 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalyses", + "title": "List App Slot Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json new file mode 100644 index 000000000000..e7e43014b88d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalysesSlot", + "title": "List App Slot Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json new file mode 100644 index 000000000000..3e295aeeb3de --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "appanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/appanalysis", + "properties": { + "description": "Determine causes of availability loss as well as solutions for these problems" + } + }, + { + "name": "apprestartanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/apprestartanalyses", + "properties": { + "description": "Find the reasons that your app restarted" + } + }, + { + "name": "memoryanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/memoryanalysis", + "properties": { + "description": "Detect issues with memory as well as suggest ways to troubleshoot memory problems" + } + }, + { + "name": "tcpconnectionsanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/tcpconnectionsanalysis", + "properties": { + "description": "Analyze port usage and find out if a high number of connections is causing problems for your web app" + } + }, + { + "name": "perfanalysis", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability/analyses/perfanalysis", + "properties": { + "description": "Determine causes of performance degredation as well as solutions for these problems" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteAnalysesSlot", + "title": "List App Analyses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json new file mode 100644 index 000000000000..5381747f42b4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponses", + "title": "Get App Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json new file mode 100644 index 000000000000..0f729bc4ca99 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponses", + "title": "Get App Slot Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json new file mode 100644 index 000000000000..89682e145b92 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponsesSlot", + "title": "Get App Slot Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json new file mode 100644 index 000000000000..2af63e524dab --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "runtimeavailability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/detectors/runtimeavailability", + "properties": { + "dataset": [], + "metadata": { + "description": "This detector analyzes the requests to your application.", + "category": "Availability and Performance" + } + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorResponsesSlot", + "title": "Get App Detector Responses" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json new file mode 100644 index 000000000000..174a09833a31 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json @@ -0,0 +1,200 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "sitecpuanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis", + "properties": { + "description": null, + "displayName": "CPU Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "sitememoryanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis", + "properties": { + "description": null, + "displayName": "Physical Memory Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "committedmemoryusage", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage", + "properties": { + "description": null, + "displayName": "Committed Memory Usage", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "pagefileoperations", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations", + "properties": { + "description": null, + "displayName": "Page File Operations", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "siterestartuserinitiated", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated", + "properties": { + "description": null, + "displayName": "User Initiated Site Restarts", + "isEnabled": true, + "rank": 14 + } + }, + { + "name": "siterestartsettingupdate", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate", + "properties": { + "description": null, + "displayName": "Config Update Site Restarts", + "isEnabled": true, + "rank": 12 + } + }, + { + "name": "frebanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis", + "properties": { + "description": null, + "displayName": "Freb Logs Analysis", + "isEnabled": true, + "rank": 6 + } + }, + { + "name": "workeravailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability", + "properties": { + "description": null, + "displayName": "Worker Availability", + "isEnabled": true, + "rank": 11 + } + }, + { + "name": "sitelatency", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency", + "properties": { + "description": null, + "displayName": "Site Latency", + "isEnabled": false, + "rank": 1005 + } + }, + { + "name": "threadcount", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount", + "properties": { + "description": null, + "displayName": "Thread Count", + "isEnabled": true, + "rank": 23 + } + }, + { + "name": "failedrequestsperuri", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri", + "properties": { + "description": null, + "displayName": "Failed Requests Per URI", + "isEnabled": true, + "rank": 998 + } + }, + { + "name": "autoheal", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal", + "properties": { + "description": null, + "displayName": "AutoHeal", + "isEnabled": true, + "rank": 21 + } + }, + { + "name": "loganalyzer", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer", + "properties": { + "description": null, + "displayName": "PHP Log Analyzer", + "isEnabled": true, + "rank": 26 + } + }, + { + "name": "aspnetcore", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore", + "properties": { + "description": null, + "displayName": "ASP.NET Core", + "isEnabled": true, + "rank": 5 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectors", + "title": "List App Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json new file mode 100644 index 000000000000..1d672d26eb09 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectors", + "title": "List App Slot Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json new file mode 100644 index 000000000000..516eb5d7a126 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/slots/staging/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorsSlot", + "title": "List App Slot Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json new file mode 100644 index 000000000000..2d699901b395 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json @@ -0,0 +1,200 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "diagnosticCategory": "availability", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "servicehealth", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/servicehealth", + "properties": { + "description": null, + "displayName": "Service Health", + "isEnabled": true, + "rank": 1 + } + }, + { + "name": "siteswap", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siteswap", + "properties": { + "description": null, + "displayName": "Site Swap Operations", + "isEnabled": true, + "rank": 8 + } + }, + { + "name": "sitecrashes", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecrashes", + "properties": { + "description": null, + "displayName": "Site Crash Events", + "isEnabled": true, + "rank": 9 + } + }, + { + "name": "deployment", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/deployment", + "properties": { + "description": null, + "displayName": "Site Deployments", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "sitecpuanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitecpuanalysis", + "properties": { + "description": null, + "displayName": "CPU Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "sitememoryanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitememoryanalysis", + "properties": { + "description": null, + "displayName": "Physical Memory Analysis", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "committedmemoryusage", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/committedmemoryusage", + "properties": { + "description": null, + "displayName": "Committed Memory Usage", + "isEnabled": true, + "rank": 7 + } + }, + { + "name": "pagefileoperations", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/pagefileoperations", + "properties": { + "description": null, + "displayName": "Page File Operations", + "isEnabled": true, + "rank": 3 + } + }, + { + "name": "siterestartuserinitiated", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartuserinitiated", + "properties": { + "description": null, + "displayName": "User Initiated Site Restarts", + "isEnabled": true, + "rank": 14 + } + }, + { + "name": "siterestartsettingupdate", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/siterestartsettingupdate", + "properties": { + "description": null, + "displayName": "Config Update Site Restarts", + "isEnabled": true, + "rank": 12 + } + }, + { + "name": "frebanalysis", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/frebanalysis", + "properties": { + "description": null, + "displayName": "Freb Logs Analysis", + "isEnabled": true, + "rank": 6 + } + }, + { + "name": "workeravailability", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/workeravailability", + "properties": { + "description": null, + "displayName": "Worker Availability", + "isEnabled": true, + "rank": 11 + } + }, + { + "name": "sitelatency", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/sitelatency", + "properties": { + "description": null, + "displayName": "Site Latency", + "isEnabled": false, + "rank": 1005 + } + }, + { + "name": "threadcount", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/threadcount", + "properties": { + "description": null, + "displayName": "Thread Count", + "isEnabled": true, + "rank": 23 + } + }, + { + "name": "failedrequestsperuri", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/failedrequestsperuri", + "properties": { + "description": null, + "displayName": "Failed Requests Per URI", + "isEnabled": true, + "rank": 998 + } + }, + { + "name": "autoheal", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/autoheal", + "properties": { + "description": null, + "displayName": "AutoHeal", + "isEnabled": true, + "rank": 21 + } + }, + { + "name": "loganalyzer", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/loganalyzer", + "properties": { + "description": null, + "displayName": "PHP Log Analyzer", + "isEnabled": true, + "rank": 26 + } + }, + { + "name": "aspnetcore", + "id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/diagnostics/availability/detectors/aspnetcore", + "properties": { + "description": null, + "displayName": "ASP.NET Core", + "isEnabled": true, + "rank": 5 + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDetectorsSlot", + "title": "List App Detectors" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json new file mode 100644 index 000000000000..04d79e514903 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategories", + "title": "List App Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json new file mode 100644 index 000000000000..f0f1308f45e9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategories", + "title": "List App Slot Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json new file mode 100644 index 000000000000..688acde1bc4d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/slots/staging/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategoriesSlot", + "title": "List App Slot Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json new file mode 100644 index 000000000000..9f129cc54793 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "siteName": "SampleApp", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "availability", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/sites/SampleApp/diagnostics/availability", + "properties": { + "description": "Availability and Perfomance Diagnostics" + } + } + ] + } + } + }, + "operationId": "Diagnostics_ListSiteDiagnosticCategoriesSlot", + "title": "List App Diagnostic Categories" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json new file mode 100644 index 000000000000..892e1ba3af9b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "location": "West US 2", + "staticSitesWorkflowPreviewRequest": { + "properties": { + "branch": "master", + "buildProperties": { + "apiLocation": "api", + "appArtifactLocation": "build", + "appLocation": "app" + }, + "repositoryUrl": "https://github.com/username/RepoName" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": { + "path": ".github/workflows/azure-static-web-apps-.yml", + "contents": "base64encodedworkflowcontentspreview" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_PreviewWorkflow", + "title": "Generates a preview workflow file for the static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json new file mode 100644 index 000000000000..6536045d8be9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/repo", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": [] + }, + "sku": { + "name": "Standard", + "tier": "Standard" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_List", + "title": "Get all static sites in a subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json new file mode 100644 index 000000000000..cdd145efdf49 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json @@ -0,0 +1,42 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "AppServicePlans_Get", + "title": "Get App Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json new file mode 100644 index 000000000000..cbff19850577 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "customDnsSuffix", + "type": "Microsoft.Web/hostingEnvironments/configurations/customdnssuffix", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/customdnssuffix", + "properties": { + "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", + "dnsSuffix": "contoso.com", + "keyVaultReferenceIdentity": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/test-rg/providers/microsoft.managedidentity/userassignedidentities/test-user-mi", + "provisioningDetails": null, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_GetAseCustomDnsSuffixConfiguration", + "title": "Get ASE custom DNS suffix configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json new file mode 100644 index 000000000000..b66d39756d93 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json @@ -0,0 +1,88 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettingsv2", + "type": "Microsoft.Web/sites/authsettingsv2", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettingsv2", + "kind": "app", + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAuthSettingsV2WithoutSecrets", + "title": "List Auth Settings without Secrets" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json new file mode 100644 index 000000000000..74029e1b0e0f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "Certificates_Get", + "title": "Get Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json new file mode 100644 index 000000000000..916944965cad --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "deletedSiteId": "9", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "wussite6", + "type": "Microsoft.Web/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6", + "properties": { + "deletedSiteId": 9, + "deletedSiteName": "wussite6", + "deletedTimestamp": "2019-05-09T22:29:05.1337007", + "geoRegionName": "West US 2", + "kind": "app", + "resourceGroup": "rg1", + "slot": "Production", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + }, + "headers": {} + } + }, + "operationId": "Global_GetDeletedWebApp", + "title": "Get Deleted Web App" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json new file mode 100644 index 000000000000..8595bf520183 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "deletedSiteId": "9", + "location": "West US 2", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "wussite6", + "type": "Microsoft.Web/locations/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6", + "properties": { + "deletedSiteId": 9, + "deletedSiteName": "wussite6", + "deletedTimestamp": "2019-05-09T22:29:05.1337007", + "geoRegionName": "West US 2", + "kind": "app", + "resourceGroup": "rg1", + "slot": "Production", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + }, + "headers": {} + } + }, + "operationId": "DeletedWebApps_GetDeletedWebAppByLocation", + "title": "Get Deleted Web App by Location" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json new file mode 100644 index 000000000000..accacf14cef8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "deletedSiteId": "9", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "name": "wussite6", + "type": "Microsoft.Web/locations/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6/snapshots/9", + "properties": { + "time": "2019-05-09T22:29:05.1337007" + } + } + ], + "headers": {} + } + }, + "operationId": "Global_GetDeletedWebAppSnapshots", + "title": "Get Deleted Web App Snapshots" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json new file mode 100644 index 000000000000..2d654fdf5c95 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json @@ -0,0 +1,781 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/dotnet", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|3.1", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|3.1", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.1" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|2.2", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|2.2", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "2.2" + } + ], + "value": "2" + }, + { + "displayText": ".NET Framework 4", + "minorVersions": [ + { + "displayText": ".NET Framework 4.7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": {}, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.7", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "4.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/node", + "properties": { + "displayText": "Node.js", + "majorVersions": [ + { + "displayText": "Node.js 14", + "minorVersions": [ + { + "displayText": "Node.js 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|14", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|14", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~14" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~14", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "14 LTS" + } + ], + "value": "14" + }, + { + "displayText": "Node.js 12", + "minorVersions": [ + { + "displayText": "Node.js 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|12", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|12", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~12" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~12", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "12 LTS" + } + ], + "value": "12" + }, + { + "displayText": "Node.js 10", + "minorVersions": [ + { + "displayText": "Node.js 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|10", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|10", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~10" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~10", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "10 LTS" + } + ], + "value": "10" + }, + { + "displayText": "Node.js 8", + "minorVersions": [ + { + "displayText": "Node.js 8 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~8" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~8", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "8 LTS" + } + ], + "value": "8" + }, + { + "displayText": "Node.js 6", + "minorVersions": [ + { + "displayText": "Node.js 6 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "WEBSITE_NODE_DEFAULT_VERSION": "~6" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "6 LTS" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/python", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.7", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.7", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.6", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.6", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.6" + } + ], + "value": "3" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "java", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/java", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|11", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|11", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11", + "siteConfigPropertiesDictionary": { + "javaVersion": "11", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "11.0" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8", + "siteConfigPropertiesDictionary": { + "javaVersion": "1.8", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "8.0" + } + ], + "value": "8" + } + ], + "preferredOs": "Windows", + "value": "java" + } + }, + { + "name": "powershell", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/powershell", + "properties": { + "displayText": "PowerShell Core", + "majorVersions": [ + { + "displayText": "PowerShell 7", + "minorVersions": [ + { + "displayText": "PowerShell 7.0", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~7", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~7", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PowerShell Core 6", + "minorVersions": [ + { + "displayText": "PowerShell Core 6.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "endOfLifeDate": "2020-10-04T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~6", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "6.2" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "powershell" + } + }, + { + "name": "custom", + "type": "Microsoft.Web/functionAppStacks", + "id": "/providers/Microsoft.Web/functionAppStacks/custom", + "properties": { + "displayText": "Custom", + "majorVersions": [ + { + "displayText": "Custom", + "minorVersions": [ + { + "displayText": "Custom Handler", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "custom", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + } + }, + "value": "custom" + } + ], + "value": "custom" + } + ], + "preferredOs": "Windows", + "value": "custom" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetFunctionAppStacks", + "title": "Get Function App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json new file mode 100644 index 000000000000..836607fd0bf7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json @@ -0,0 +1,788 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "location": "westus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/dotnet", + "location": "westus", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|3.1", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|3.1", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.1" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "dotnet|2.2", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "dotnet|2.2", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "2.2" + } + ], + "value": "2" + }, + { + "displayText": ".NET Framework 4", + "minorVersions": [ + { + "displayText": ".NET Framework 4.7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": {}, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.7", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "4.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/node", + "location": "westus", + "properties": { + "displayText": "Node.js", + "majorVersions": [ + { + "displayText": "Node.js 14", + "minorVersions": [ + { + "displayText": "Node.js 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|14", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|14", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~14" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~14", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "14 LTS" + } + ], + "value": "14" + }, + { + "displayText": "Node.js 12", + "minorVersions": [ + { + "displayText": "Node.js 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|12", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|12", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~12" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~12", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "12 LTS" + } + ], + "value": "12" + }, + { + "displayText": "Node.js 10", + "minorVersions": [ + { + "displayText": "Node.js 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Node|10", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Node|10", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~10" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~10", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "10 LTS" + } + ], + "value": "10" + }, + { + "displayText": "Node.js 8", + "minorVersions": [ + { + "displayText": "Node.js 8 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~8" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~8", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2" + ] + } + }, + "value": "8 LTS" + } + ], + "value": "8" + }, + { + "displayText": "Node.js 6", + "minorVersions": [ + { + "displayText": "Node.js 6 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "WEBSITE_NODE_DEFAULT_VERSION": "~6" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~1" + ] + } + }, + "value": "6 LTS" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/python", + "location": "westus", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.7", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.7", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "Python|3.6", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Python|3.6", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "3.6" + } + ], + "value": "3" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "java", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/java", + "location": "westus", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|11", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|11", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11", + "siteConfigPropertiesDictionary": { + "javaVersion": "11", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "11.0" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "Java|8", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "Java|8", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8", + "siteConfigPropertiesDictionary": { + "javaVersion": "1.8", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "8.0" + } + ], + "value": "8" + } + ], + "preferredOs": "Windows", + "value": "java" + } + }, + { + "name": "powershell", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/powershell", + "location": "westus", + "properties": { + "displayText": "PowerShell Core", + "majorVersions": [ + { + "displayText": "PowerShell 7", + "minorVersions": [ + { + "displayText": "PowerShell 7.0", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "~7", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~7", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3" + ] + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PowerShell Core 6", + "minorVersions": [ + { + "displayText": "PowerShell Core 6.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "endOfLifeDate": "2020-10-04T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "~6", + "siteConfigPropertiesDictionary": { + "powerShellVersion": "~6", + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~2", + "~3" + ] + } + }, + "value": "6.2" + } + ], + "value": "6" + } + ], + "preferredOs": "Windows", + "value": "powershell" + } + }, + { + "name": "custom", + "type": "Microsoft.Web/locations/functionAppStacks", + "id": "/providers/Microsoft.Web/locations/functionAppStacks/custom", + "location": "westus", + "properties": { + "displayText": "Custom", + "majorVersions": [ + { + "displayText": "Custom", + "minorVersions": [ + { + "displayText": "Custom Handler", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "", + "siteConfigPropertiesDictionary": { + "linuxFxVersion": "", + "use32BitWorkerProcess": false + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "custom", + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true + }, + "supportedFunctionsExtensionVersions": [ + "~3", + "~2" + ] + } + }, + "value": "custom" + } + ], + "value": "custom" + } + ], + "preferredOs": "Windows", + "value": "custom" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetFunctionAppStacksForLocation", + "title": "Get Locations Function App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json new file mode 100644 index 000000000000..0bff34a77bd2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json @@ -0,0 +1,81 @@ +{ + "parameters": { + "name": "SampleAse", + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "description": "App Service management", + "endpoints": [ + "70.37.57.58/32", + "157.55.208.185/32", + "23.102.188.65/32", + "191.236.154.88/32", + "52.174.22.21/32", + "13.94.149.179/32", + "13.94.143.126/32", + "13.94.141.115/32", + "52.178.195.197/32", + "52.178.190.65/32", + "52.178.184.149/32", + "52.178.177.147/32", + "13.75.127.117/32", + "40.83.125.161/32", + "40.83.121.56/32", + "40.83.120.64/32", + "52.187.56.50/32", + "52.187.63.37/32", + "52.187.59.251/32", + "52.187.63.19/32", + "52.165.158.140/32", + "52.165.152.214/32", + "52.165.154.193/32", + "52.165.153.122/32", + "104.44.129.255/32", + "104.44.134.255/32", + "104.44.129.243/32", + "104.44.129.141/32", + "65.52.193.203/32", + "70.37.89.222/32", + "13.64.115.203/32", + "52.225.177.153/32", + "65.52.172.237/32" + ], + "ports": [ + "454", + "455" + ] + }, + { + "description": "App Service Environment VIP", + "endpoints": [ + "52.247.209.18/32" + ], + "ports": [ + "454", + "455", + "16001" + ] + }, + { + "description": "App Service Environment subnet", + "endpoints": [ + "192.168.250.0/24" + ], + "ports": [ + "All" + ] + } + ] + } + } + }, + "operationId": "AppServiceEnvironments_GetInboundNetworkDependenciesEndpoints", + "title": "Get the network endpoints of all inbound dependencies of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json new file mode 100644 index 000000000000..61ee968d1a63 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "appSettingKey": "setting", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/config/configreferences/appsettings/setting", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingKeyVaultReference", + "title": "Get Azure Key Vault app setting reference" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json new file mode 100644 index 000000000000..8c3a6c95cce7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "appSettingKey": "setting", + "resourceGroupName": "testrg123", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/slots/stage/config/configreferences/appsettings/setting", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingKeyVaultReferenceSlot", + "title": "Get Azure Key Vault slot app setting reference" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json new file mode 100644 index 000000000000..eabd307ba656 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/config/configreferences/appsettings/secretName", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/config/configreferences/appsettings/secretName2", + "properties": { + "secretName": "secretName2", + "secretVersion": "secretVersion2", + "vaultName": "keyVaultName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingsKeyVaultReferences", + "title": "Get Azure Key Vault references for app settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json new file mode 100644 index 000000000000..531d531bff39 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/slots/stage/config/configreferences/appsettings/secretName", + "properties": { + "secretName": "secretName", + "secretVersion": "secretVersion", + "vaultName": "keyVaultName" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testc6282/slots/stage/config/configreferences/appsettings/secretName2", + "properties": { + "secretName": "secretName2", + "secretVersion": "secretVersion2", + "vaultName": "keyVaultName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAppSettingsKeyVaultReferencesSlot", + "title": "Get Azure Key Vault references for app settings for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json new file mode 100644 index 000000000000..e99adff15227 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackend", + "title": "Get details of the linked backend registered with a static site by name." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json new file mode 100644 index 000000000000..11e70c071e7d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackendForBuild", + "title": "Get details of the linked backend registered with a static site build by name." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json new file mode 100644 index 000000000000..572a238cbbab --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2020-03-04T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackends", + "title": "Get details of the linked backends registered with a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json new file mode 100644 index 000000000000..4ded38bf265e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2020-03-04T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetLinkedBackendsForBuild", + "title": "Get details of the linked backends registered with a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json new file mode 100644 index 000000000000..25081326b295 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json @@ -0,0 +1,804 @@ +{ + "parameters": { + "name": "SampleAse", + "api-version": "2026-03-01-preview", + "resourceGroupName": "Sample-WestUSResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "category": "Azure Storage", + "endpoints": [ + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.36", + "isAccessible": true, + "latency": 42.0469, + "port": 80 + }, + { + "ipAddress": "52.183.104.36", + "isAccessible": true, + "latency": 41.7038, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.25", + "isAccessible": true, + "latency": 37.326, + "port": 80 + }, + { + "ipAddress": "52.183.104.25", + "isAccessible": true, + "latency": 37.513600000000004, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.26", + "isAccessible": true, + "latency": 32.789, + "port": 80 + }, + { + "ipAddress": "52.183.104.26", + "isAccessible": true, + "latency": 1.8702, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "52.183.104.28", + "isAccessible": true, + "latency": 36.7378, + "port": 80 + }, + { + "ipAddress": "52.183.104.28", + "isAccessible": true, + "latency": 36.7108, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 4.0261000000000005, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 3.8264, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 40.8523, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 40.7501, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 1.2071, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 38.2975, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 59.383700000000005, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 60.0775, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 3.5512, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.6777, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 3.5204, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 2.8193, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.2720000000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.0147, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 3.2387, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 3.2804, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.16", + "isAccessible": true, + "latency": 43.025200000000005, + "port": 80 + }, + { + "ipAddress": "13.66.176.16", + "isAccessible": true, + "latency": 43.1683, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.25", + "isAccessible": true, + "latency": 41.8598, + "port": 80 + }, + { + "ipAddress": "13.66.176.25", + "isAccessible": true, + "latency": 41.9805, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.26", + "isAccessible": true, + "latency": 30.542900000000003, + "port": 80 + }, + { + "ipAddress": "13.66.176.26", + "isAccessible": true, + "latency": 0.9832000000000001, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.176.28", + "isAccessible": true, + "latency": 35.9562, + "port": 80 + }, + { + "ipAddress": "13.66.176.28", + "isAccessible": true, + "latency": 36.0643, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 3.2829, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.3393, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 3.4103000000000003, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 4.1032, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.1141, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.0247, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 2.834, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 2.8198000000000003, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 1.3855000000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 1.0594000000000001, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 2.4717000000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 2.4827, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.395, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 3.1701, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 1.4308, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 22.5866, + "port": 443 + } + ] + }, + { + "domainName": "blob.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.5372, + "port": 80 + }, + { + "ipAddress": "13.77.184.64", + "isAccessible": true, + "latency": 2.4626, + "port": 443 + } + ] + }, + { + "domainName": "queue.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 3.7873, + "port": 80 + }, + { + "ipAddress": "13.77.184.73", + "isAccessible": true, + "latency": 4.1911000000000005, + "port": 443 + } + ] + }, + { + "domainName": "table.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 2.9162000000000003, + "port": 80 + }, + { + "ipAddress": "13.77.184.74", + "isAccessible": true, + "latency": 2.7896, + "port": 443 + } + ] + }, + { + "domainName": "file.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 26.723100000000002, + "port": 80 + }, + { + "ipAddress": "13.77.184.76", + "isAccessible": true, + "latency": 26.735200000000003, + "port": 443 + } + ] + } + ] + }, + { + "category": "Azure SQL Database", + "endpoints": [ + { + "domainName": "database.windows.net", + "endpointDetails": [ + { + "ipAddress": "13.66.226.202", + "isAccessible": true, + "latency": 1.5964, + "port": 1433 + } + ] + } + ] + }, + { + "category": "Azure Management", + "endpoints": [ + { + "domainName": "management.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "23.102.135.246", + "isAccessible": true, + "latency": 46.5764, + "port": 443 + } + ] + }, + { + "domainName": "admin.core.windows.net", + "endpointDetails": [ + { + "ipAddress": "23.102.135.247", + "isAccessible": true, + "latency": 47.408, + "port": 443 + } + ] + }, + { + "domainName": "management.azure.com", + "endpointDetails": [ + { + "ipAddress": "52.151.25.45", + "isAccessible": true, + "latency": 3.9529, + "port": 443 + } + ] + } + ] + }, + { + "category": "Azure Active Directory", + "endpoints": [ + { + "domainName": "graph.windows.net", + "endpointDetails": [ + { + "ipAddress": "20.190.133.83", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + }, + { + "ipAddress": "20.190.133.81", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + }, + { + "ipAddress": "20.190.133.67", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + }, + { + "ipAddress": "40.126.5.34", + "isAccessible": true, + "latency": 3.2264, + "port": 443 + } + ] + } + ] + }, + { + "category": "Regional Service", + "endpoints": [ + { + "domainName": "gr-prod-mwh.cloudapp.net", + "endpointDetails": [ + { + "ipAddress": "13.66.225.188", + "isAccessible": true, + "latency": 3.3826, + "port": 443 + } + ] + }, + { + "domainName": "az-prod.metrics.nsatc.net", + "endpointDetails": [ + { + "ipAddress": "40.77.24.27", + "isAccessible": true, + "latency": 38.5647, + "port": 443 + } + ] + } + ] + }, + { + "category": "SSL Certificate Verification", + "endpoints": [ + { + "domainName": "ocsp.msocsp.com", + "endpointDetails": [ + { + "ipAddress": "104.18.25.243", + "isAccessible": true, + "latency": 6.0651, + "port": 80 + }, + { + "ipAddress": "104.18.25.243", + "isAccessible": true, + "latency": 12.888, + "port": 443 + }, + { + "ipAddress": "104.18.24.243", + "isAccessible": true, + "latency": 6.0651, + "port": 80 + }, + { + "ipAddress": "104.18.24.243", + "isAccessible": true, + "latency": 12.888, + "port": 443 + } + ] + }, + { + "domainName": "mscrl.microsoft.com", + "endpointDetails": [ + { + "ipAddress": "152.199.4.33", + "isAccessible": true, + "latency": 6.742900000000001, + "port": 80 + }, + { + "ipAddress": "152.199.4.33", + "isAccessible": true, + "latency": 7.436100000000001, + "port": 443 + } + ] + }, + { + "domainName": "crl.microsoft.com", + "endpointDetails": [ + { + "ipAddress": "23.215.102.10", + "isAccessible": true, + "latency": 25.136200000000002, + "port": 80 + }, + { + "ipAddress": "23.215.102.10", + "isAccessible": true, + "latency": 25.0085, + "port": 443 + }, + { + "ipAddress": "23.215.102.42", + "isAccessible": true, + "latency": 25.136200000000002, + "port": 80 + }, + { + "ipAddress": "23.215.102.42", + "isAccessible": true, + "latency": 25.0085, + "port": 443 + } + ] + }, + { + "domainName": "www.microsoft.com", + "endpointDetails": [ + { + "ipAddress": "23.49.13.56", + "isAccessible": true, + "latency": 7.9229, + "port": 80 + }, + { + "ipAddress": "23.49.13.56", + "isAccessible": true, + "latency": 8.4871, + "port": 443 + } + ] + }, + { + "domainName": "crl3.digicert.com", + "endpointDetails": [ + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 5.4074, + "port": 80 + }, + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 5.577, + "port": 443 + } + ] + }, + { + "domainName": "ocsp.digicert.com", + "endpointDetails": [ + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 6.8989, + "port": 80 + }, + { + "ipAddress": "72.21.91.29", + "isAccessible": true, + "latency": 5.667400000000001, + "port": 443 + } + ] + }, + { + "domainName": "cacerts.digicert.com", + "endpointDetails": [ + { + "ipAddress": "104.18.11.39", + "isAccessible": true, + "latency": 10.772400000000001, + "port": 80 + }, + { + "ipAddress": "104.18.11.39", + "isAccessible": true, + "latency": 10.7705, + "port": 443 + }, + { + "ipAddress": "104.18.10.39", + "isAccessible": true, + "latency": 10.772400000000001, + "port": 80 + }, + { + "ipAddress": "104.18.10.39", + "isAccessible": true, + "latency": 10.7705, + "port": 443 + } + ] + }, + { + "domainName": "www.thawte.com", + "endpointDetails": [ + { + "ipAddress": "54.69.98.161", + "isAccessible": true, + "latency": 47.532900000000005, + "port": 80 + }, + { + "ipAddress": "54.69.98.161", + "isAccessible": true, + "latency": 48.5362, + "port": 443 + }, + { + "ipAddress": "35.167.62.148", + "isAccessible": true, + "latency": 47.532900000000005, + "port": 80 + }, + { + "ipAddress": "35.167.62.148", + "isAccessible": true, + "latency": 48.5362, + "port": 443 + } + ] + } + ] + } + ] + } + } + }, + "operationId": "AppServiceEnvironments_GetOutboundNetworkDependenciesEndpoints", + "title": "Get the network endpoints of all outbound dependencies of an App Service Environment." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json new file mode 100644 index 000000000000..bd434bcbcdf2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetScmAllowed", + "title": "Get SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json new file mode 100644 index 000000000000..bb991268d6ee --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetScmAllowedSlot", + "title": "Get SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json new file mode 100644 index 000000000000..18e7c81b84f2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetFtpAllowedSlot", + "title": "Get FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json new file mode 100644 index 000000000000..b3e297543295 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetFtpAllowed", + "title": "Get FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json new file mode 100644 index 000000000000..8a85e31836b7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-03-01-preview", + "metadataName": "default", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + } + }, + "operationId": "ResourceHealthMetadata_GetBySite", + "title": "Get ResourceHealthMetadata" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json new file mode 100644 index 000000000000..d655067d365f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-03-01-preview", + "metadataName": "default", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + } + }, + "operationId": "ResourceHealthMetadata_GetBySiteSlot", + "title": "Get ResourceHealthMetadata" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json new file mode 100644 index 000000000000..2d0ea5021f20 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_Get", + "title": "Get Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json new file mode 100644 index 000000000000..bfd1b47ace1e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_GetSlot", + "title": "Get Site Certificate for a slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json new file mode 100644 index 000000000000..839492800f28 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json @@ -0,0 +1,72 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetConfiguration", + "title": "Get Site Config" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json new file mode 100644 index 000000000000..2fad104135f9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json @@ -0,0 +1,47 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 0, + "numberOfInstancesSuccessful": 1, + "status": "RuntimeSuccessful" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 1, + "numberOfInstancesSuccessful": 0, + "status": "RuntimeStarting" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetProductionSiteDeploymentStatus", + "title": "Get Deployment Status" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json new file mode 100644 index 000000000000..5fb3748a3dce --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/slots/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 0, + "numberOfInstancesSuccessful": 1, + "status": "RuntimeSuccessful" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "type": "Microsoft.Web/sites/slots/deploymentStatus", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/deploymentStatus/eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "properties": { + "deploymentId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", + "errors": null, + "failedInstancesLogs": [], + "numberOfInstancesFailed": 0, + "numberOfInstancesInProgress": 1, + "numberOfInstancesSuccessful": 0, + "status": "RuntimeStarting" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetSlotSiteDeploymentStatusSlot", + "title": "Get Deployment Status Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json new file mode 100644 index 000000000000..d52937437a4f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-03-01-preview", + "instanceId": "134987120", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "134987120", + "type": "Microsoft.Web/sites/instances", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging/instances/134987120", + "properties": { + "containers": { + "c1": { + "currentTimeStamp": "2013-10-21T13:28:06.419Z" + } + }, + "detectorUrl": "testsec579", + "state": "READY", + "statusUrl": "https://sampleurl" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetInstanceInfo", + "title": "Get site instance info" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json new file mode 100644 index 000000000000..0fee6e3bb085 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-03-01-preview", + "instanceId": "134987120", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "134987120", + "type": "Microsoft.Web/sites/instances", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging/instances/134987120", + "properties": { + "containers": { + "c1": { + "currentTimeStamp": "2013-10-21T13:28:06.419Z" + } + }, + "detectorUrl": "testsec579", + "state": "READY", + "statusUrl": "https://sampleurl" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetInstanceInfoSlot", + "title": "Get site instance info" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json new file mode 100644 index 000000000000..e7197a03278b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateEndpointConnection", + "title": "Get a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json new file mode 100644 index 000000000000..8d613dd49510 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetPrivateEndpointConnectionList", + "title": "Get a list of private endpoint connections associated with a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json new file mode 100644 index 000000000000..65024f71f8e5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slot/stage/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateEndpointConnectionSlot", + "title": "Get a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json new file mode 100644 index 000000000000..8bacf2962f72 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "privateEndpointConnectionName": "connection", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateEndpointConnections/connection", + "properties": { + "privateEndpoint": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint" + }, + "privateLinkServiceConnectionState": { + "description": "Approved by admin.", + "actionsRequired": "", + "status": "Approved" + }, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetPrivateEndpointConnection", + "title": "Get a private endpoint connection for a site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json new file mode 100644 index 000000000000..0321f08bb093 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "site", + "type": "Microsoft.Web/sites/privateLinkResources", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateLinkResources/site", + "properties": { + "groupId": "sites", + "requiredMembers": [ + "sites" + ], + "requiredZoneNames": [ + "privatelink.testsite.azurewebsites.net" + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetPrivateLinkResources", + "title": "Get private link resources of a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json new file mode 100644 index 000000000000..52597ce6faab --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "site", + "type": "Microsoft.Web/sites/privateLinkResources", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateLinkResources/site", + "properties": { + "groupId": "sites", + "requiredMembers": [ + "sites" + ], + "requiredZoneNames": [ + "privatelink.testsite.azurewebsites.net" + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateLinkResourcesSlot", + "title": "Get private link resources of a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json new file mode 100644 index 000000000000..55026a448074 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "site", + "type": "Microsoft.Web/sites/privateLinkResources", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/privateLinkResources/site", + "properties": { + "groupId": "sites", + "requiredMembers": [ + "sites" + ], + "requiredZoneNames": [ + "privatelink.testsite.azurewebsites.net" + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_GetPrivateLinkResources", + "title": "Get private link resources of a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json new file mode 100644 index 000000000000..ae06848e8d0e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json @@ -0,0 +1,45 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [ + { + "backendResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.ApiManagement/service/apimService0", + "createdOn": "2022-03-27T04:57:24.8058474", + "provisioningState": "Succeeded", + "region": null + } + ], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/repo", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSite", + "title": "Get details for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json new file mode 100644 index 000000000000..ed4b50793a99 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "basicAuthName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/basicAuth/default", + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "secretState": "Password", + "secretUrl": null + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBasicAuth", + "title": "Gets the basic auth properties for a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json new file mode 100644 index 000000000000..ac8e8e0ae6a9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12", + "properties": { + "buildId": "12", + "createdTimeUtc": "2020-03-04T17:33:11.641Z", + "hostname": "happy-sea-15afae3e-12.westus2.azurestaticwebsites.net", + "lastUpdatedOn": "2020-03-04T17:33:11.641Z", + "linkedBackends": [ + { + "backendResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.ApiManagement/service/apimService0", + "createdOn": "2022-03-27T04:57:24.8058474", + "provisioningState": "Succeeded", + "region": null + } + ], + "pullRequestTitle": "Update README.md", + "sourceBranch": "pr-branch", + "status": "Uploading", + "userProvidedFunctionApps": null + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSiteBuild", + "title": "Get a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..6811e8496d59 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnection", + "title": "Get overview of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json new file mode 100644 index 000000000000..7cf84befa150 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnectionWithDetails", + "title": "Get details of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json new file mode 100644 index 000000000000..df60c0f0e217 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnections", + "title": "List overviews of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json new file mode 100644 index 000000000000..f3c1375b8851 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json @@ -0,0 +1,44 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetBuildDatabaseConnectionsWithDetails", + "title": "List full details of database connections for the static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json new file mode 100644 index 000000000000..9bf59f6117aa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json @@ -0,0 +1,55 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default", + "properties": { + "buildId": "default", + "createdTimeUtc": "2020-03-04T17:33:11.641Z", + "hostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "lastUpdatedOn": "2020-03-04T17:33:11.641Z", + "linkedBackends": [], + "pullRequestTitle": null, + "sourceBranch": "demo", + "status": "Ready", + "userProvidedFunctionApps": null + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12", + "properties": { + "buildId": "12", + "createdTimeUtc": "2020-03-04T17:33:11.641Z", + "hostname": "happy-sea-15afae3e-12.westus2.azurestaticwebsites.net", + "lastUpdatedOn": "2020-03-04T17:33:11.641Z", + "linkedBackends": [ + { + "backendResourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.ApiManagement/service/apimService0", + "createdOn": "2022-03-27T04:57:24.8058474", + "provisioningState": "Succeeded", + "region": null + } + ], + "pullRequestTitle": "Update README.md", + "sourceBranch": "demo-patch2", + "status": "Ready", + "userProvidedFunctionApps": null + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSiteBuilds", + "title": "Get all builds for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json new file mode 100644 index 000000000000..f9be1f97c63f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + } + } + }, + "operationId": "StaticSites_GetStaticSiteCustomDomain", + "title": "Get custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json new file mode 100644 index 000000000000..99b223fd0bfd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSitesBuilds/testStaticSite0/customDomains/custom.domain.net", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "domainName": "custom.domain.net" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteCustomDomains", + "title": "List custom domains for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..d692785cdc88 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnection", + "title": "Get overview of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json new file mode 100644 index 000000000000..633dbd5ae0f2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnectionWithDetails", + "title": "Get details of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json new file mode 100644 index 000000000000..6ff5dc4ad6d0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnections", + "title": "List overviews of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json new file mode 100644 index 000000000000..baa7bbc33864 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json @@ -0,0 +1,43 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "configurationFiles": [ + { + "type": "configuration", + "contents": "base64encodeddatabaseconfiguration", + "fileName": "staticwebapp.database.config.json" + }, + { + "type": "graphqlschema", + "contents": "base64encodeddatabasegraphqlschema", + "fileName": "staticwebapp.database.schema.gql" + } + ], + "connectionIdentity": "SystemAssigned", + "connectionString": "AccountEndpoint=https://exampleDatabaseName.documents.azure.com:443/;Database=mydb;", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetDatabaseConnectionsWithDetails", + "title": "List full details of database connections for the static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json new file mode 100644 index 000000000000..0fa9430369f7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json @@ -0,0 +1,42 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "linkedBackends": [], + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/repo", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": null + }, + "sku": { + "name": "Standard", + "tier": "Standard" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetStaticSitesByResourceGroup", + "title": "Get static sites for a resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json new file mode 100644 index 000000000000..de1ec550be18 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json @@ -0,0 +1,13 @@ +{ + "parameters": { + "operationId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab5d5", + "api-version": "2026-03-01-preview", + "location": "West US", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "204": {} + }, + "operationId": "Global_GetSubscriptionOperationWithAsyncResponse", + "title": "Gets an operation in a subscription and given region" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json new file mode 100644 index 000000000000..ed4d59430ab6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "location": "West US", + "quotaType": "regional", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": { + "localizedValue": "Cores usage in West US", + "value": "Cores usage in West US" + }, + "currentValue": 55, + "limit": 250, + "unit": "Core Count" + } + ] + }, + "headers": {} + } + }, + "operationId": "GetUsagesInLocation_list", + "title": "Get usages in location for subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json new file mode 100644 index 000000000000..53748ae257c9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppForStaticSite", + "title": "Get details of the user provided function app registered with a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json new file mode 100644 index 000000000000..d6c60714b47a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "functionAppName": "testFunctionApp", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppForStaticSiteBuild", + "title": "Get details of the user provided function app registered with a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json new file mode 100644 index 000000000000..441147411b7a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppsForStaticSite", + "title": "Get details of the user provided function apps registered with a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json new file mode 100644 index 000000000000..996f80d7c9d4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_GetUserProvidedFunctionAppsForStaticSiteBuild", + "title": "Get details of the user provided function apps registered with a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json new file mode 100644 index 000000000000..830a60bcc13f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json @@ -0,0 +1,135 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "sku": "Standard", + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_Get", + "title": "Get Web App" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json new file mode 100644 index 000000000000..a7ffc4412181 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json @@ -0,0 +1,49 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "backupId": "12345", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/backups/12345", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-05T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetBackupStatus", + "title": "Get web app backup" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json new file mode 100644 index 000000000000..bea9e24dcbf9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json @@ -0,0 +1,77 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "backupId": "12345", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "request": { + "properties": { + "backupName": "abcdwe", + "backupSchedule": { + "frequencyInterval": 7, + "frequencyUnit": "Day", + "keepAtLeastOneBackup": true, + "retentionPeriodInDays": 30, + "startTime": "2022-09-02T17:33:11.641Z" + }, + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "enabled": true, + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=" + } + } + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/backups/12345", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-05T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBackupStatusSecrets", + "title": "Get web app backup with secrets" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json new file mode 100644 index 000000000000..ef0d8938d641 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json @@ -0,0 +1,131 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "sku": "Standard", + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_GetSlot", + "title": "Get Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json new file mode 100644 index 000000000000..7161cab1966f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json @@ -0,0 +1,2917 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/dotnet", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET 5", + "minorVersions": [ + { + "displayText": ".NET 5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|5.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "v5.0" + } + }, + "value": "5" + } + ], + "value": "5" + }, + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1" + } + }, + "value": "3.1" + }, + { + "displayText": ".NET Core 3.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.0" + } + }, + "value": "3.0" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2" + } + }, + "value": "2.2" + }, + { + "displayText": ".NET Core 2.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.1" + } + }, + "value": "2.1" + }, + { + "displayText": ".NET Core 2.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.0" + } + }, + "value": "2.0" + } + ], + "value": "dotnetcore2" + }, + { + "displayText": ".NET Core 1", + "minorVersions": [ + { + "displayText": ".NET Core 1.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.1" + } + }, + "value": "1.1" + }, + { + "displayText": ".NET Core 1.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.0" + } + }, + "value": "1.0" + } + ], + "value": "1" + }, + { + "displayText": "ASP.NET V4", + "minorVersions": [ + { + "displayText": "ASP.NET V4.8", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v4.0" + } + }, + "value": "v4.8" + } + ], + "value": "v4" + }, + { + "displayText": "ASP.NET V3", + "minorVersions": [ + { + "displayText": "ASP.NET V3.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v2.0" + } + }, + "value": "v3.5" + } + ], + "value": "v3" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/node", + "properties": { + "displayText": "Node", + "majorVersions": [ + { + "displayText": "Node LTS", + "minorVersions": [ + { + "displayText": "Node LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|lts" + } + }, + "value": "lts" + } + ], + "value": "lts" + }, + { + "displayText": "Node 14", + "minorVersions": [ + { + "displayText": "Node 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2023-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|14-lts" + } + }, + "value": "14-lts" + } + ], + "value": "14" + }, + { + "displayText": "Node 12", + "minorVersions": [ + { + "displayText": "Node 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|12-lts" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "12.13.0" + } + }, + "value": "12-lts" + }, + { + "displayText": "Node 12.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": true, + "runtimeVersion": "NODE|12.9" + } + }, + "value": "12.9" + } + ], + "value": "12" + }, + { + "displayText": "Node 10", + "minorVersions": [ + { + "displayText": "Node 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10-lts" + } + }, + "value": "10-LTS" + }, + { + "displayText": "Node 10.16", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.16" + } + }, + "value": "10.16" + }, + { + "displayText": "Node 10.15", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.15.2" + } + }, + "value": "10.15" + }, + { + "displayText": "Node 10.14", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.14" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.14.1" + } + }, + "value": "10.14" + }, + { + "displayText": "Node 10.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.12" + } + }, + "value": "10.12" + }, + { + "displayText": "Node 10.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.10" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.0.0" + } + }, + "value": "10.10" + }, + { + "displayText": "Node 10.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.6.0" + } + }, + "value": "10.6" + }, + { + "displayText": "Node 10.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.1" + } + }, + "value": "10.1" + } + ], + "value": "10" + }, + { + "displayText": "Node 9", + "minorVersions": [ + { + "displayText": "Node 9.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|9.4" + } + }, + "value": "9.4" + } + ], + "value": "9" + }, + { + "displayText": "Node 8", + "minorVersions": [ + { + "displayText": "Node 8 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8-lts" + } + }, + "value": "8-lts" + }, + { + "displayText": "Node 8.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.12" + } + }, + "value": "8.12" + }, + { + "displayText": "Node 8.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.11" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.11" + } + }, + "value": "8.11" + }, + { + "displayText": "Node 8.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.10" + } + }, + "value": "8.10" + }, + { + "displayText": "Node 8.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.9" + } + }, + "value": "8.9" + }, + { + "displayText": "Node 8.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.8" + } + }, + "value": "8.8" + }, + { + "displayText": "Node 8.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Node 8.4", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.4" + } + }, + "value": "8.4" + }, + { + "displayText": "Node 8.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.2" + } + }, + "value": "8.2" + }, + { + "displayText": "Node 8.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.1.4" + } + }, + "value": "8.1" + }, + { + "displayText": "Node 8.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.0" + } + }, + "value": "8.0" + } + ], + "value": "8" + }, + { + "displayText": "Node 7", + "minorVersions": [ + { + "displayText": "Node 7.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2017-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.10.1" + } + }, + "value": "7.10" + } + ], + "value": "7" + }, + { + "displayText": "Node 6", + "minorVersions": [ + { + "displayText": "Node 6 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6-lts" + } + }, + "value": "6-LTS" + }, + { + "displayText": "Node 6.12", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.12" + } + }, + "value": "6.12" + }, + { + "displayText": "Node 6.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.11" + } + }, + "value": "6.11" + }, + { + "displayText": "Node 6.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.10" + } + }, + "value": "6.10" + }, + { + "displayText": "Node 6.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.9.5" + } + }, + "value": "6.9" + }, + { + "displayText": "Node 6.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.6" + } + }, + "value": "6.6" + }, + { + "displayText": "Node 6.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.5.0" + } + }, + "value": "6.5" + }, + { + "displayText": "Node 6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.2" + } + }, + "value": "6.2" + } + ], + "value": "6" + }, + { + "displayText": "Node 4", + "minorVersions": [ + { + "displayText": "Node 4.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.8" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.8" + } + }, + "value": "4.8" + }, + { + "displayText": "Node 4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.5" + } + }, + "value": "4.5" + }, + { + "displayText": "Node 4.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.4" + } + }, + "value": "4.4" + } + ], + "value": "4" + } + ], + "preferredOs": "Linux", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/python", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.8" + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.7" + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.4.0" + } + }, + "value": "3.6" + } + ], + "value": "3" + }, + { + "displayText": "Python 2", + "minorVersions": [ + { + "displayText": "Python 2.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|2.7" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.7.3" + } + }, + "value": "2.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "php", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/php", + "properties": { + "displayText": "PHP", + "majorVersions": [ + { + "displayText": "PHP 7", + "minorVersions": [ + { + "displayText": "PHP 7.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.4" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.4" + } + }, + "value": "7.4" + }, + { + "displayText": "PHP 7.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.3" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.3" + } + }, + "value": "7.3" + }, + { + "displayText": "PHP 7.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.2" + } + }, + "value": "7.2" + }, + { + "displayText": "PHP 7.1", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.1" + } + }, + "value": "7.1" + }, + { + "displayText": "7.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.0" + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PHP 5", + "minorVersions": [ + { + "displayText": "PHP 5.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|5.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "5.6" + } + }, + "value": "5.6" + } + ], + "value": "5" + } + ], + "preferredOs": "Linux", + "value": "php" + } + }, + { + "name": "ruby", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/ruby", + "properties": { + "displayText": "Ruby", + "majorVersions": [ + { + "displayText": "Ruby 2", + "minorVersions": [ + { + "displayText": "Ruby 2.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6" + } + }, + "value": "2.6" + }, + { + "displayText": "Ruby 2.6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6.2" + } + }, + "value": "2.6.2" + }, + { + "displayText": "Ruby 2.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5" + } + }, + "value": "2.5" + }, + { + "displayText": "Ruby 2.5.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5.5" + } + }, + "value": "2.5.5" + }, + { + "displayText": "Ruby 2.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4" + } + }, + "value": "2.4" + }, + { + "displayText": "Ruby 2.4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4.5" + } + }, + "value": "2.4.5" + }, + { + "displayText": "Ruby 2.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3" + } + }, + "value": "2.3" + }, + { + "displayText": "Ruby 2.3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.8" + } + }, + "value": "2.3.8" + }, + { + "displayText": "Ruby 2.3.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.3" + } + }, + "value": "2.3.3" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "ruby" + } + }, + { + "name": "java", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/java", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11" + } + }, + "value": "11.0" + }, + { + "displayText": "Java 11.0.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java 11.0.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java 11.0.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.5_ZULU" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java 11.0.3", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.3_ZULU" + } + }, + "value": "11.0.3" + }, + { + "displayText": "Java 11.0.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.2_ZULU" + } + }, + "value": "11.0.2" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8" + } + }, + "value": "8.0" + }, + { + "displayText": "Java 1.8.0_252", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_252" + } + }, + "value": "8.0.252" + }, + { + "displayText": "Java 1.8.0_242", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_242" + } + }, + "value": "8.0.242" + }, + { + "displayText": "Java 1.8.0_232", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_232_ZULU" + } + }, + "value": "8.0.232" + }, + { + "displayText": "Java 1.8.0_212", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_212_ZULU" + } + }, + "value": "8.0.212" + }, + { + "displayText": "Java 1.8.0_202", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202_ZULU" + } + }, + "value": "8.0.202" + }, + { + "displayText": "Java 1.8.0_202 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202" + } + }, + "value": "8.0.202 (Oracle)" + }, + { + "displayText": "Java 1.8.0_181", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181_ZULU" + } + }, + "value": "8.0.181" + }, + { + "displayText": "Java 1.8.0_181 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181" + } + }, + "value": "8.0.181 (Oracle)" + }, + { + "displayText": "Java 1.8.0_172", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172_ZULU" + } + }, + "value": "8.0.172" + }, + { + "displayText": "Java 1.8.0_172 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172" + } + }, + "value": "8.0.172 (Oracle)" + }, + { + "displayText": "Java 1.8.0_144", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_144" + } + }, + "value": "8.0.144" + }, + { + "displayText": "Java 1.8.0_111 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_111" + } + }, + "value": "8.0.111 (Oracle)" + }, + { + "displayText": "Java 1.8.0_102", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_102" + } + }, + "value": "8.0.102" + }, + { + "displayText": "Java 1.8.0_92", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_92" + } + }, + "value": "8.0.92" + }, + { + "displayText": "Java 1.8.0_73 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_73" + } + }, + "value": "8.0.73 (Oracle)" + }, + { + "displayText": "Java 1.8.0_60 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_60" + } + }, + "value": "8.0.60 (Oracle)" + }, + { + "displayText": "Java 1.8.0_25 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_25" + } + }, + "value": "8.0.25 (Oracle)" + } + ], + "value": "8" + }, + { + "displayText": "Java 7", + "minorVersions": [ + { + "displayText": "Java 7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isAutoUpdate": true, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7" + } + }, + "value": "7.0" + }, + { + "displayText": "Java 1.7.0_262", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_262_ZULU" + } + }, + "value": "7.0.262" + }, + { + "displayText": "Java 1.7.0_242", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_242_ZULU" + } + }, + "value": "7.0.242" + }, + { + "displayText": "Java 1.7.0_222", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_222_ZULU" + } + }, + "value": "7.0.222" + }, + { + "displayText": "Java 1.7.0_191", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_191_ZULU" + } + }, + "value": "7.0.191" + }, + { + "displayText": "Java 1.7.0_80 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_80" + } + }, + "value": "7.0.80 (Oracle)" + }, + { + "displayText": "Java 1.7.0_71 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_71" + } + }, + "value": "7.0.71 (Oracle)" + }, + { + "displayText": "Java 1.7.0_51 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_51" + } + }, + "value": "7.0.51 (Oracle)" + } + ], + "value": "7" + } + ], + "preferredOs": "Linux", + "value": "java" + } + }, + { + "name": "javacontainers", + "type": "Microsoft.Web/webAppStacks", + "id": "/providers/Microsoft.Web/webAppStacks/javacontainers", + "properties": { + "displayText": "Java Containers", + "majorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "minorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "JAVA|11-java11", + "java8Runtime": "JAVA|8-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "JAVA", + "javaContainerVersion": "SE" + } + }, + "value": "SE" + }, + { + "displayText": "Java SE 11.0.7", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java SE 11.0.6", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java SE 11.0.5", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.5" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java SE 8u252", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u252" + } + }, + "value": "1.8.252" + }, + { + "displayText": "Java SE 8u242", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u242" + } + }, + "value": "1.8.242" + }, + { + "displayText": "Java SE 8u232", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u232" + } + }, + "value": "1.8.232" + } + ], + "value": "javase" + }, + { + "displayText": "JBoss EAP", + "minorVersions": [ + { + "displayText": "JBoss EAP 7.2", + "stackSettings": { + "linuxContainerSettings": { + "isPreview": true, + "java8Runtime": "JBOSSEAP|7.2-java8" + } + }, + "value": "7.2" + } + ], + "value": "jbosseap" + }, + { + "displayText": "Tomcat 9.0", + "minorVersions": [ + { + "displayText": "Tomcat 9.0", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|9.0-java11", + "java8Runtime": "TOMCAT|9.0-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0" + } + }, + "value": "9.0" + }, + { + "displayText": "Tomcat 9.0.37", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.37-java11", + "java8Runtime": "TOMCAT|9.0.37-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.37" + } + }, + "value": "9.0.37" + }, + { + "displayText": "Tomcat 9.0.33", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.33-java11", + "java8Runtime": "TOMCAT|9.0.33-java8" + } + }, + "value": "9.0.33" + }, + { + "displayText": "Tomcat 9.0.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.31" + } + }, + "value": "9.0.31" + }, + { + "displayText": "Tomcat 9.0.27", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.27" + } + }, + "value": "9.0.27" + }, + { + "displayText": "Tomcat 9.0.21", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.21" + } + }, + "value": "9.0.21" + }, + { + "displayText": "Tomcat 9.0.20", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.20-java11", + "java8Runtime": "TOMCAT|9.0.20-java8" + } + }, + "value": "9.0.20" + }, + { + "displayText": "Tomcat 9.0.14", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.14" + } + }, + "value": "9.0.14" + }, + { + "displayText": "Tomcat 9.0.12", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.12" + } + }, + "value": "9.0.12" + }, + { + "displayText": "Tomcat 9.0.8", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.8" + } + }, + "value": "9.0.8" + }, + { + "displayText": "Tomcat 9.0.0", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.0" + } + }, + "value": "9.0.0" + } + ], + "value": "tomcat9.0" + }, + { + "displayText": "Tomcat 8.5", + "minorVersions": [ + { + "displayText": "Tomcat 8.5", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|8.5-java11", + "java8Runtime": "TOMCAT|8.5-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Tomcat 8.5.6", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.6" + } + }, + "value": "8.5.6" + }, + { + "displayText": "Tomcat 8.5.57", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.57-java11", + "java8Runtime": "TOMCAT|8.5.57-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.57" + } + }, + "value": "8.5.57" + }, + { + "displayText": "Tomcat 8.5.53", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.53-java11", + "java8Runtime": "TOMCAT|8.5.53-java8" + } + }, + "value": "8.5.53" + }, + { + "displayText": "Tomcat 8.5.51", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.51" + } + }, + "value": "8.5.51" + }, + { + "displayText": "Tomcat 8.5.47", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.47" + } + }, + "value": "8.5.47" + }, + { + "displayText": "Tomcat 8.5.42", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.42" + } + }, + "value": "8.5.42" + }, + { + "displayText": "Tomcat 8.5.41", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.41-java11", + "java8Runtime": "TOMCAT|8.5.41-java8" + } + }, + "value": "8.5.41" + }, + { + "displayText": "Tomcat 8.5.37", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.37" + } + }, + "value": "8.5.37" + }, + { + "displayText": "Tomcat 8.5.34", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.34" + } + }, + "value": "8.5.34" + }, + { + "displayText": "Tomcat 8.5.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.31" + } + }, + "value": "8.5.31" + }, + { + "displayText": "Tomcat 8.5.20", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.20" + } + }, + "value": "8.5.20" + } + ], + "value": "tomcat8.5" + }, + { + "displayText": "Tomcat 8.0", + "minorVersions": [ + { + "displayText": "Tomcat 8.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0" + } + }, + "value": "8.0" + }, + { + "displayText": "Tomcat 8.0.53", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.53" + } + }, + "value": "8.0.53" + }, + { + "displayText": "Tomcat 8.0.46", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.46" + } + }, + "value": "8.0.46" + }, + { + "displayText": "Tomcat 8.0.23", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.23" + } + }, + "value": "8.0.23" + } + ], + "value": "tomcat8.0" + }, + { + "displayText": "Tomcat 7.0", + "minorVersions": [ + { + "displayText": "Tomcat 7.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0" + } + }, + "value": "7.0" + }, + { + "displayText": "Tomcat 7.0.94", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.94" + } + }, + "value": "7.0.94" + }, + { + "displayText": "Tomcat 7.0.81", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.81" + } + }, + "value": "7.0.81" + }, + { + "displayText": "Tomcat 7.0.62", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.62" + } + }, + "value": "7.0.62" + }, + { + "displayText": "Tomcat 7.0.50", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.50" + } + }, + "value": "7.0.50" + } + ], + "value": "tomcat7.0" + }, + { + "displayText": "Jetty 9.3", + "minorVersions": [ + { + "displayText": "Jetty 9.3", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3" + } + }, + "value": "9.3" + }, + { + "displayText": "Jetty 9.3.25", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.25" + } + }, + "value": "9.3.25" + }, + { + "displayText": "Jetty 9.3.13", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.13" + } + }, + "value": "9.3.13" + } + ], + "value": "jetty9.3" + }, + { + "displayText": "Jetty 9.1", + "minorVersions": [ + { + "displayText": "Jetty 9.1", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1" + } + }, + "value": "9.1" + }, + { + "displayText": "Jetty 9.1.0", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1.0" + } + }, + "value": "9.1.0" + } + ], + "value": "jetty9.1" + }, + { + "displayText": "WildFly 14", + "minorVersions": [ + { + "displayText": "WildFly 14", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "java8Runtime": "WILDFLY|14-jre8" + } + }, + "value": "14" + }, + { + "displayText": "WildFly 14.0.1", + "stackSettings": { + "linuxContainerSettings": { + "isDeprecated": true, + "java8Runtime": "WILDFLY|14.0.1-java8" + } + }, + "value": "14.0.1" + } + ], + "value": "wildfly14" + } + ], + "value": "javacontainers" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetWebAppStacks", + "title": "Get Web App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json new file mode 100644 index 000000000000..c7021df618dc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json @@ -0,0 +1,2925 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "location": "westus" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "dotnet", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/dotnet", + "location": "westus", + "properties": { + "displayText": ".NET", + "majorVersions": [ + { + "displayText": ".NET 5", + "minorVersions": [ + { + "displayText": ".NET 5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|5.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "5.0.x" + }, + "isEarlyAccess": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "v5.0" + } + }, + "value": "5" + } + ], + "value": "5" + }, + { + "displayText": ".NET Core 3", + "minorVersions": [ + { + "displayText": ".NET Core 3.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1.301" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.1" + } + }, + "value": "3.1" + }, + { + "displayText": ".NET Core 3.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|3.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-04-03T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.0.103" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.0" + } + }, + "value": "3.0" + } + ], + "value": "3" + }, + { + "displayText": ".NET Core 2", + "minorVersions": [ + { + "displayText": ".NET Core 2.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-23T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.2.207" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.2" + } + }, + "value": "2.2" + }, + { + "displayText": ".NET Core 2.1 (LTS)", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-09-21T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.807" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.1" + } + }, + "value": "2.1" + }, + { + "displayText": ".NET Core 2.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|2.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2018-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1.202" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.0" + } + }, + "value": "2.0" + } + ], + "value": "dotnetcore2" + }, + { + "displayText": ".NET Core 1", + "minorVersions": [ + { + "displayText": ".NET Core 1.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.1" + } + }, + "value": "1.1" + }, + { + "displayText": ".NET Core 1.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "DOTNETCORE|1.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-07-27T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "1.1.14" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.0" + } + }, + "value": "1.0" + } + ], + "value": "1" + }, + { + "displayText": "ASP.NET V4", + "minorVersions": [ + { + "displayText": "ASP.NET V4.8", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v4.0" + } + }, + "value": "v4.8" + } + ], + "value": "v4" + }, + { + "displayText": "ASP.NET V3", + "minorVersions": [ + { + "displayText": "ASP.NET V3.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.1" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "v2.0" + } + }, + "value": "v3.5" + } + ], + "value": "v3" + } + ], + "preferredOs": "Windows", + "value": "dotnet" + } + }, + { + "name": "node", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/node", + "location": "westus", + "properties": { + "displayText": "Node", + "majorVersions": [ + { + "displayText": "Node LTS", + "minorVersions": [ + { + "displayText": "Node LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|lts" + } + }, + "value": "lts" + } + ], + "value": "lts" + }, + { + "displayText": "Node 14", + "minorVersions": [ + { + "displayText": "Node 14 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2023-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "14.x" + }, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|14-lts" + } + }, + "value": "14-lts" + } + ], + "value": "14" + }, + { + "displayText": "Node 12", + "minorVersions": [ + { + "displayText": "Node 12 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|12-lts" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "12.13.0" + } + }, + "value": "12-lts" + }, + { + "displayText": "Node 12.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2022-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "12.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": true, + "runtimeVersion": "NODE|12.9" + } + }, + "value": "12.9" + } + ], + "value": "12" + }, + { + "displayText": "Node 10", + "minorVersions": [ + { + "displayText": "Node 10 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10-lts" + } + }, + "value": "10-LTS" + }, + { + "displayText": "Node 10.16", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.16" + } + }, + "value": "10.16" + }, + { + "displayText": "Node 10.15", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isHidden": true, + "isPreview": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.15.2" + } + }, + "value": "10.15" + }, + { + "displayText": "Node 10.14", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.14" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.14.1" + } + }, + "value": "10.14" + }, + { + "displayText": "Node 10.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.12" + } + }, + "value": "10.12" + }, + { + "displayText": "Node 10.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.10" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.0.0" + } + }, + "value": "10.10" + }, + { + "displayText": "Node 10.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "10.6.0" + } + }, + "value": "10.6" + }, + { + "displayText": "Node 10.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2021-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.x" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|10.1" + } + }, + "value": "10.1" + } + ], + "value": "10" + }, + { + "displayText": "Node 9", + "minorVersions": [ + { + "displayText": "Node 9.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|9.4" + } + }, + "value": "9.4" + } + ], + "value": "9" + }, + { + "displayText": "Node 8", + "minorVersions": [ + { + "displayText": "Node 8 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8-lts" + } + }, + "value": "8-lts" + }, + { + "displayText": "Node 8.12", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.12" + } + }, + "value": "8.12" + }, + { + "displayText": "Node 8.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.11" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.11" + } + }, + "value": "8.11" + }, + { + "displayText": "Node 8.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.10" + } + }, + "value": "8.10" + }, + { + "displayText": "Node 8.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.9" + } + }, + "value": "8.9" + }, + { + "displayText": "Node 8.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.8" + } + }, + "value": "8.8" + }, + { + "displayText": "Node 8.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Node 8.4", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.4" + } + }, + "value": "8.4" + }, + { + "displayText": "Node 8.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.2" + } + }, + "value": "8.2" + }, + { + "displayText": "Node 8.1", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.1" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "8.1.4" + } + }, + "value": "8.1" + }, + { + "displayText": "Node 8.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2020-01-31T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|8.0" + } + }, + "value": "8.0" + } + ], + "value": "8" + }, + { + "displayText": "Node 7", + "minorVersions": [ + { + "displayText": "Node 7.10", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2017-07-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.10.1" + } + }, + "value": "7.10" + } + ], + "value": "7" + }, + { + "displayText": "Node 6", + "minorVersions": [ + { + "displayText": "Node 6 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6-lts" + } + }, + "value": "6-LTS" + }, + { + "displayText": "Node 6.12", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.12" + } + }, + "value": "6.12" + }, + { + "displayText": "Node 6.11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.11" + } + }, + "value": "6.11" + }, + { + "displayText": "Node 6.10", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.10" + } + }, + "value": "6.10" + }, + { + "displayText": "Node 6.9", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.9" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.9.5" + } + }, + "value": "6.9" + }, + { + "displayText": "Node 6.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.6" + } + }, + "value": "6.6" + }, + { + "displayText": "Node 6.5", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "6.5.0" + } + }, + "value": "6.5" + }, + { + "displayText": "Node 6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2019-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|6.2" + } + }, + "value": "6.2" + } + ], + "value": "6" + }, + { + "displayText": "Node 4", + "minorVersions": [ + { + "displayText": "Node 4.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.8" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "4.8" + } + }, + "value": "4.8" + }, + { + "displayText": "Node 4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.5" + } + }, + "value": "4.5" + }, + { + "displayText": "Node 4.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "endOfLifeDate": "2018-05-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "NODE|4.4" + } + }, + "value": "4.4" + } + ], + "value": "4" + } + ], + "preferredOs": "Linux", + "value": "node" + } + }, + { + "name": "python", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/python", + "location": "westus", + "properties": { + "displayText": "Python", + "majorVersions": [ + { + "displayText": "Python 3", + "minorVersions": [ + { + "displayText": "Python 3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.8" + } + }, + "value": "3.8" + }, + { + "displayText": "Python 3.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.7" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.7" + } + }, + "value": "3.7" + }, + { + "displayText": "Python 3.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|3.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.6" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "3.4.0" + } + }, + "value": "3.6" + } + ], + "value": "3" + }, + { + "displayText": "Python 2", + "minorVersions": [ + { + "displayText": "Python 2.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PYTHON|2.7" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-02-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "2.7" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "2.7.3" + } + }, + "value": "2.7" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "python" + } + }, + { + "name": "php", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/php", + "location": "westus", + "properties": { + "displayText": "PHP", + "majorVersions": [ + { + "displayText": "PHP 7", + "minorVersions": [ + { + "displayText": "PHP 7.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.4" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-12-28T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.4" + } + }, + "value": "7.4" + }, + { + "displayText": "PHP 7.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.3" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2022-01-06T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.3" + } + }, + "value": "7.3" + }, + { + "displayText": "PHP 7.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.2" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-12-30T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.2" + } + }, + "value": "7.2" + }, + { + "displayText": "PHP 7.1", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.1" + } + }, + "value": "7.1" + }, + { + "displayText": "7.0", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|7.0" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-03-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "7.0" + } + }, + "value": "7.0" + } + ], + "value": "7" + }, + { + "displayText": "PHP 5", + "minorVersions": [ + { + "displayText": "PHP 5.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "PHP|5.6" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2024-11-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "5.6" + } + }, + "value": "5.6" + } + ], + "value": "5" + } + ], + "preferredOs": "Linux", + "value": "php" + } + }, + { + "name": "ruby", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/ruby", + "location": "westus", + "properties": { + "displayText": "Ruby", + "majorVersions": [ + { + "displayText": "Ruby 2", + "minorVersions": [ + { + "displayText": "Ruby 2.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6" + } + }, + "value": "2.6" + }, + { + "displayText": "Ruby 2.6.2", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.6.2" + } + }, + "value": "2.6.2" + }, + { + "displayText": "Ruby 2.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5" + } + }, + "value": "2.5" + }, + { + "displayText": "Ruby 2.5.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.5.5" + } + }, + "value": "2.5.5" + }, + { + "displayText": "Ruby 2.4", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4" + } + }, + "value": "2.4" + }, + { + "displayText": "Ruby 2.4.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2020-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.4.5" + } + }, + "value": "2.4.5" + }, + { + "displayText": "Ruby 2.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3" + } + }, + "value": "2.3" + }, + { + "displayText": "Ruby 2.3.8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.8" + } + }, + "value": "2.3.8" + }, + { + "displayText": "Ruby 2.3.3", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2019-05-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "RUBY|2.3.3" + } + }, + "value": "2.3.3" + } + ], + "value": "2" + } + ], + "preferredOs": "Linux", + "value": "ruby" + } + }, + { + "name": "java", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/java", + "location": "westus", + "properties": { + "displayText": "Java", + "majorVersions": [ + { + "displayText": "Java 11", + "minorVersions": [ + { + "displayText": "Java 11", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "11" + } + }, + "value": "11.0" + }, + { + "displayText": "Java 11.0.7", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java 11.0.6", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java 11.0.5", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.5_ZULU" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java 11.0.3", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.3_ZULU" + } + }, + "value": "11.0.3" + }, + { + "displayText": "Java 11.0.2", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2026-10-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "11" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "11.0.2_ZULU" + } + }, + "value": "11.0.2" + } + ], + "value": "11" + }, + { + "displayText": "Java 8", + "minorVersions": [ + { + "displayText": "Java 8", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isAutoUpdate": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8" + } + }, + "value": "8.0" + }, + { + "displayText": "Java 1.8.0_252", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_252" + } + }, + "value": "8.0.252" + }, + { + "displayText": "Java 1.8.0_242", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_242" + } + }, + "value": "8.0.242" + }, + { + "displayText": "Java 1.8.0_232", + "stackSettings": { + "linuxRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "" + }, + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_232_ZULU" + } + }, + "value": "8.0.232" + }, + { + "displayText": "Java 1.8.0_212", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_212_ZULU" + } + }, + "value": "8.0.212" + }, + { + "displayText": "Java 1.8.0_202", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202_ZULU" + } + }, + "value": "8.0.202" + }, + { + "displayText": "Java 1.8.0_202 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_202" + } + }, + "value": "8.0.202 (Oracle)" + }, + { + "displayText": "Java 1.8.0_181", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181_ZULU" + } + }, + "value": "8.0.181" + }, + { + "displayText": "Java 1.8.0_181 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_181" + } + }, + "value": "8.0.181 (Oracle)" + }, + { + "displayText": "Java 1.8.0_172", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172_ZULU" + } + }, + "value": "8.0.172" + }, + { + "displayText": "Java 1.8.0_172 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_172" + } + }, + "value": "8.0.172 (Oracle)" + }, + { + "displayText": "Java 1.8.0_144", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_144" + } + }, + "value": "8.0.144" + }, + { + "displayText": "Java 1.8.0_111 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_111" + } + }, + "value": "8.0.111 (Oracle)" + }, + { + "displayText": "Java 1.8.0_102", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_102" + } + }, + "value": "8.0.102" + }, + { + "displayText": "Java 1.8.0_92", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2025-04-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_92" + } + }, + "value": "8.0.92" + }, + { + "displayText": "Java 1.8.0_73 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_73" + } + }, + "value": "8.0.73 (Oracle)" + }, + { + "displayText": "Java 1.8.0_60 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_60" + } + }, + "value": "8.0.60 (Oracle)" + }, + { + "displayText": "Java 1.8.0_25 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8" + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.8.0_25" + } + }, + "value": "8.0.25 (Oracle)" + } + ], + "value": "8" + }, + { + "displayText": "Java 7", + "minorVersions": [ + { + "displayText": "Java 7", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isAutoUpdate": true, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7" + } + }, + "value": "7.0" + }, + { + "displayText": "Java 1.7.0_262", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_262_ZULU" + } + }, + "value": "7.0.262" + }, + { + "displayText": "Java 1.7.0_242", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_242_ZULU" + } + }, + "value": "7.0.242" + }, + { + "displayText": "Java 1.7.0_222", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_222_ZULU" + } + }, + "value": "7.0.222" + }, + { + "displayText": "Java 1.7.0_191", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "endOfLifeDate": "2023-08-01T00:00:00+00:00", + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_191_ZULU" + } + }, + "value": "7.0.191" + }, + { + "displayText": "Java 1.7.0_80 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_80" + } + }, + "value": "7.0.80 (Oracle)" + }, + { + "displayText": "Java 1.7.0_71 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_71" + } + }, + "value": "7.0.71 (Oracle)" + }, + { + "displayText": "Java 1.7.0_51 (Oracle)", + "stackSettings": { + "windowsRuntimeSettings": { + "appInsightsSettings": { + "isSupported": false + }, + "gitHubActionSettings": { + "isSupported": false + }, + "isDeprecated": true, + "remoteDebuggingSupported": false, + "runtimeVersion": "1.7.0_51" + } + }, + "value": "7.0.51 (Oracle)" + } + ], + "value": "7" + } + ], + "preferredOs": "Linux", + "value": "java" + } + }, + { + "name": "javacontainers", + "type": "Microsoft.Web/locations/webAppStacks", + "id": "/providers/Microsoft.Web/locations/webAppStacks/javacontainers", + "location": "westus", + "properties": { + "displayText": "Java Containers", + "majorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "minorVersions": [ + { + "displayText": "Java SE (Embedded Web Server)", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "JAVA|11-java11", + "java8Runtime": "JAVA|8-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "JAVA", + "javaContainerVersion": "SE" + } + }, + "value": "SE" + }, + { + "displayText": "Java SE 11.0.7", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.7" + } + }, + "value": "11.0.7" + }, + { + "displayText": "Java SE 11.0.6", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.6" + } + }, + "value": "11.0.6" + }, + { + "displayText": "Java SE 11.0.5", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "JAVA|11.0.5" + } + }, + "value": "11.0.5" + }, + { + "displayText": "Java SE 8u252", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u252" + } + }, + "value": "1.8.252" + }, + { + "displayText": "Java SE 8u242", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u242" + } + }, + "value": "1.8.242" + }, + { + "displayText": "Java SE 8u232", + "stackSettings": { + "linuxContainerSettings": { + "java8Runtime": "JAVA|8u232" + } + }, + "value": "1.8.232" + } + ], + "value": "javase" + }, + { + "displayText": "JBoss EAP", + "minorVersions": [ + { + "displayText": "JBoss EAP 7.2", + "stackSettings": { + "linuxContainerSettings": { + "isPreview": true, + "java8Runtime": "JBOSSEAP|7.2-java8" + } + }, + "value": "7.2" + } + ], + "value": "jbosseap" + }, + { + "displayText": "Tomcat 9.0", + "minorVersions": [ + { + "displayText": "Tomcat 9.0", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|9.0-java11", + "java8Runtime": "TOMCAT|9.0-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0" + } + }, + "value": "9.0" + }, + { + "displayText": "Tomcat 9.0.37", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.37-java11", + "java8Runtime": "TOMCAT|9.0.37-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.37" + } + }, + "value": "9.0.37" + }, + { + "displayText": "Tomcat 9.0.33", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.33-java11", + "java8Runtime": "TOMCAT|9.0.33-java8" + } + }, + "value": "9.0.33" + }, + { + "displayText": "Tomcat 9.0.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.31" + } + }, + "value": "9.0.31" + }, + { + "displayText": "Tomcat 9.0.27", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.27" + } + }, + "value": "9.0.27" + }, + { + "displayText": "Tomcat 9.0.21", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.21" + } + }, + "value": "9.0.21" + }, + { + "displayText": "Tomcat 9.0.20", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|9.0.20-java11", + "java8Runtime": "TOMCAT|9.0.20-java8" + } + }, + "value": "9.0.20" + }, + { + "displayText": "Tomcat 9.0.14", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.14" + } + }, + "value": "9.0.14" + }, + { + "displayText": "Tomcat 9.0.12", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.12" + } + }, + "value": "9.0.12" + }, + { + "displayText": "Tomcat 9.0.8", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.8" + } + }, + "value": "9.0.8" + }, + { + "displayText": "Tomcat 9.0.0", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "9.0.0" + } + }, + "value": "9.0.0" + } + ], + "value": "tomcat9.0" + }, + { + "displayText": "Tomcat 8.5", + "minorVersions": [ + { + "displayText": "Tomcat 8.5", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "java11Runtime": "TOMCAT|8.5-java11", + "java8Runtime": "TOMCAT|8.5-jre8" + }, + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5" + } + }, + "value": "8.5" + }, + { + "displayText": "Tomcat 8.5.6", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.6" + } + }, + "value": "8.5.6" + }, + { + "displayText": "Tomcat 8.5.57", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.57-java11", + "java8Runtime": "TOMCAT|8.5.57-java8" + }, + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.57" + } + }, + "value": "8.5.57" + }, + { + "displayText": "Tomcat 8.5.53", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.53-java11", + "java8Runtime": "TOMCAT|8.5.53-java8" + } + }, + "value": "8.5.53" + }, + { + "displayText": "Tomcat 8.5.51", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.51" + } + }, + "value": "8.5.51" + }, + { + "displayText": "Tomcat 8.5.47", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.47" + } + }, + "value": "8.5.47" + }, + { + "displayText": "Tomcat 8.5.42", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.42" + } + }, + "value": "8.5.42" + }, + { + "displayText": "Tomcat 8.5.41", + "stackSettings": { + "linuxContainerSettings": { + "java11Runtime": "TOMCAT|8.5.41-java11", + "java8Runtime": "TOMCAT|8.5.41-java8" + } + }, + "value": "8.5.41" + }, + { + "displayText": "Tomcat 8.5.37", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.37" + } + }, + "value": "8.5.37" + }, + { + "displayText": "Tomcat 8.5.34", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.34" + } + }, + "value": "8.5.34" + }, + { + "displayText": "Tomcat 8.5.31", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.31" + } + }, + "value": "8.5.31" + }, + { + "displayText": "Tomcat 8.5.20", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.5.20" + } + }, + "value": "8.5.20" + } + ], + "value": "tomcat8.5" + }, + { + "displayText": "Tomcat 8.0", + "minorVersions": [ + { + "displayText": "Tomcat 8.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0" + } + }, + "value": "8.0" + }, + { + "displayText": "Tomcat 8.0.53", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.53" + } + }, + "value": "8.0.53" + }, + { + "displayText": "Tomcat 8.0.46", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.46" + } + }, + "value": "8.0.46" + }, + { + "displayText": "Tomcat 8.0.23", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "8.0.23" + } + }, + "value": "8.0.23" + } + ], + "value": "tomcat8.0" + }, + { + "displayText": "Tomcat 7.0", + "minorVersions": [ + { + "displayText": "Tomcat 7.0", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0" + } + }, + "value": "7.0" + }, + { + "displayText": "Tomcat 7.0.94", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.94" + } + }, + "value": "7.0.94" + }, + { + "displayText": "Tomcat 7.0.81", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.81" + } + }, + "value": "7.0.81" + }, + { + "displayText": "Tomcat 7.0.62", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.62" + } + }, + "value": "7.0.62" + }, + { + "displayText": "Tomcat 7.0.50", + "stackSettings": { + "windowsContainerSettings": { + "javaContainer": "TOMCAT", + "javaContainerVersion": "7.0.50" + } + }, + "value": "7.0.50" + } + ], + "value": "tomcat7.0" + }, + { + "displayText": "Jetty 9.3", + "minorVersions": [ + { + "displayText": "Jetty 9.3", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3" + } + }, + "value": "9.3" + }, + { + "displayText": "Jetty 9.3.25", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.25" + } + }, + "value": "9.3.25" + }, + { + "displayText": "Jetty 9.3.13", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.3.13" + } + }, + "value": "9.3.13" + } + ], + "value": "jetty9.3" + }, + { + "displayText": "Jetty 9.1", + "minorVersions": [ + { + "displayText": "Jetty 9.1", + "stackSettings": { + "windowsContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1" + } + }, + "value": "9.1" + }, + { + "displayText": "Jetty 9.1.0", + "stackSettings": { + "windowsContainerSettings": { + "isDeprecated": true, + "javaContainer": "JETTY", + "javaContainerVersion": "9.1.0" + } + }, + "value": "9.1.0" + } + ], + "value": "jetty9.1" + }, + { + "displayText": "WildFly 14", + "minorVersions": [ + { + "displayText": "WildFly 14", + "stackSettings": { + "linuxContainerSettings": { + "isAutoUpdate": true, + "isDeprecated": true, + "java8Runtime": "WILDFLY|14-jre8" + } + }, + "value": "14" + }, + { + "displayText": "WildFly 14.0.1", + "stackSettings": { + "linuxContainerSettings": { + "isDeprecated": true, + "java8Runtime": "WILDFLY|14.0.1-java8" + } + }, + "value": "14.0.1" + } + ], + "value": "wildfly14" + } + ], + "value": "javacontainers" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_GetWebAppStacksForLocation", + "title": "Get Locations Web App Stacks" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json new file mode 100644 index 000000000000..2a947b4d90a3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperation", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json new file mode 100644 index 000000000000..de6ee3ff4af4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperationSlot", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json new file mode 100644 index 000000000000..832d6cdb71a5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperationSlotV2", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json new file mode 100644 index 000000000000..2439bf62e0ed --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/networktraces/current/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_GetNetworkTraceOperationV2", + "title": "Get the current status of a network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json new file mode 100644 index 000000000000..5acbe8761bc2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTraces", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json new file mode 100644 index 000000000000..a87a30022f5f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTracesSlotV2", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json new file mode 100644 index 000000000000..c14309b7247d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTracesSlot", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json new file mode 100644 index 000000000000..21770d48efc8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json @@ -0,0 +1,24 @@ +{ + "parameters": { + "name": "SampleApp", + "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + } + }, + "operationId": "WebApps_GetNetworkTracesV2", + "title": "Get NetworkTraces for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json new file mode 100644 index 000000000000..f9628b29194a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "stateful1" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/stateful1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/stateful1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/office365" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/connections/office365-1" + }, + "connectionRuntimeUrl": "string" + } + } + }, + "workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + } + } + }, + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_GetWorkflow", + "title": "GET a workflow" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json new file mode 100644 index 000000000000..ce60e355a67e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json @@ -0,0 +1,61 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "stateful1" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/stateful1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/stateful1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/office365" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/connections/office365-1" + }, + "connectionRuntimeUrl": "string" + } + } + }, + "workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + } + } + }, + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + }, + "404": {} + }, + "operationId": "WebApps_GetInstanceWorkflowSlot", + "title": "GET a workflow Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json new file mode 100644 index 000000000000..9598091e195b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "name": "testkubeenv", + "api-version": "2026-03-01-preview", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "kind": "kubernetes", + "kubeEnvironmentEnvelope": { + "location": "East US", + "properties": { + "staticIp": "1.2.3.4" + } + }, + "location": "East US", + "resourceGroupName": "examplerg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + }, + "201": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "InitializationInProgress", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + } + }, + "operationId": "KubeEnvironments_CreateOrUpdate", + "title": "Create kube environments" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json new file mode 100644 index 000000000000..ed49c0b7d0da --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "examplekenv", + "api-version": "2026-03-01-preview", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "kind": "kubernetes", + "location": "East US", + "resourceGroupName": "examplerg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-03-01-preview" + } + }, + "204": {} + }, + "operationId": "KubeEnvironments_Delete", + "title": "Delete kube environment by name" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json new file mode 100644 index 000000000000..72fecfb96341 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "jlaw-demo1", + "api-version": "2026-03-01-preview", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "location": "North Central US", + "resourceGroupName": "examplerg", + "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" + }, + "responses": { + "200": { + "body": { + "name": "jlaw-demo1", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/jlaw-demo1", + "location": "North Central US", + "properties": { + "aksResourceID": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ContainerService/managedClusters/jlaw-demo1", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "jlaw-demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "20.42.33.145" + }, + "tags": {} + } + } + }, + "operationId": "KubeEnvironments_Get", + "title": "Get kube environments by name" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json new file mode 100644 index 000000000000..a1edaf6a05b6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json @@ -0,0 +1,58 @@ +{ + "parameters": { + "name": "Samplek8se", + "api-version": "2026-03-01-preview", + "resourceGroupName": "examplerg", + "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "jlaw-demo1", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/jlaw-demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "jlaw-demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "20.42.33.145" + }, + "tags": {} + }, + { + "name": "demo1", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "52.142.21.61" + }, + "tags": {} + } + ] + } + } + }, + "operationId": "KubeEnvironments_ListByResourceGroup", + "title": "List kube environments by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json new file mode 100644 index 000000000000..05b441fe8385 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json @@ -0,0 +1,50 @@ +{ + "parameters": { + "name": "examplekenv", + "api-version": "2026-03-01-preview", + "resourceGroupName": "examplerg", + "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "jlaw-demo1", + "type": "Microsoft.Web/kubeEnvironments", + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/jlaw-demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "jlaw-demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "20.42.33.145" + }, + "tags": {} + }, + { + "name": "demo1", + "type": "Microsoft.Web/kubeEnvironments", + "id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/DemoRG/providers/Microsoft.Web/kubeEnvironments/demo1", + "location": "North Central US", + "properties": { + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "demo1.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "52.142.21.61" + }, + "tags": {} + } + ] + } + } + }, + "operationId": "KubeEnvironments_ListBySubscription", + "title": "List kube environments by subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json new file mode 100644 index 000000000000..268442f85c1d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "name": "testkubeenv", + "api-version": "2026-03-01-preview", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "kind": "kubernetes", + "kubeEnvironmentEnvelope": { + "properties": { + "staticIp": "1.2.3.4" + } + }, + "location": "East US", + "resourceGroupName": "examplerg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "Succeeded", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + }, + "201": { + "body": { + "name": "testkubeenv", + "type": "Microsoft.Web/kubeEnvironments", + "extendedLocation": { + "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", + "type": "customLocation" + }, + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/testkubeenv", + "location": "East US", + "properties": { + "aksResourceID": "test", + "appLogsConfiguration": null, + "arcConfiguration": null, + "defaultDomain": "testkubeenv.k4apps.io", + "deploymentErrors": null, + "internalLoadBalancerEnabled": false, + "provisioningState": "InitializationInProgress", + "staticIp": "1.2.3.4" + }, + "tags": {} + } + } + }, + "operationId": "KubeEnvironments_Update", + "title": "Update kube environments" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_GetLastKnownGood.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_GetLastKnownGood.json new file mode 100644 index 000000000000..184c35457c59 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_GetLastKnownGood.json @@ -0,0 +1,24 @@ +{ + "operationId": "LastKnownGoods_GetLastKnownGood", + "title": "Get the current Last Known Good revision for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "lkgName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/lastKnownGood/default", + "name": "default", + "type": "Microsoft.Web/sites/lastKnownGood", + "properties": { + "siteName": "sitef6141", + "createdTime": "2026-01-15T10:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_MarkLastKnownGood.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_MarkLastKnownGood.json new file mode 100644 index 000000000000..efb1a4848d6e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_MarkLastKnownGood.json @@ -0,0 +1,24 @@ +{ + "operationId": "LastKnownGoods_MarkLastKnownGood", + "title": "Mark the current site state as Last Known Good", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "lkgName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/lastKnownGood/default", + "name": "default", + "type": "Microsoft.Web/sites/lastKnownGood", + "properties": { + "siteName": "sitef6141", + "createdTime": "2026-04-22T14:30:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json new file mode 100644 index 000000000000..c63314c9768e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_LinkBackend", + "title": "Link a backend to a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json new file mode 100644 index 000000000000..169f2f9acec5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testBackend", + "type": "Microsoft.Web/staticSites/builds/linkedBackends", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend", + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "createdOn": "2021-12-24T17:33:11.641Z", + "provisioningState": "Succeeded", + "region": "West US 2" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_LinkBackendToBuild", + "title": "Link a backend to a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json new file mode 100644 index 000000000000..78522eb84c8c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json @@ -0,0 +1,69 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + { + "name": "testsf7252", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServicePlans_List", + "title": "List App Service plans" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json new file mode 100644 index 000000000000..2256122b7d4a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json @@ -0,0 +1,70 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + { + "name": "testsf7252", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf7252", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "numberOfWorkers": 19, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "AppServicePlans_ListByResourceGroup", + "title": "List App Service plans by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json new file mode 100644 index 000000000000..d68c3ae3ebfa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appsettings", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/appsettings", + "kind": "app", + "properties": { + "Setting1": "Value1", + "Setting2": "Value2" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListApplicationSettings", + "title": "List App Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json new file mode 100644 index 000000000000..f7a90ab6d95c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json @@ -0,0 +1,56 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "type": "Microsoft.Web/aseRegions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/aseRegions", + "properties": { + "availableOS": [ + "Windows", + "Linux", + "HyperV" + ], + "availableSku": [ + "I1v2", + "I2v2", + "I3v2" + ], + "dedicatedHost": true, + "displayName": "southcentralus", + "standard": true, + "zoneRedundant": true + } + }, + { + "type": "Microsoft.Web/aseRegions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/aseRegions", + "properties": { + "availableOS": [ + "Windows", + "Linux" + ], + "availableSku": [ + "I1v4", + "I2v2", + "I3v2" + ], + "dedicatedHost": true, + "displayName": "northcentralus", + "standard": true, + "zoneRedundant": true + } + } + ] + }, + "headers": {} + } + }, + "operationId": "ListAseRegions", + "title": "List aseregions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json new file mode 100644 index 000000000000..ab6d645e3a7a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettings", + "type": "Microsoft.Web/sites/authsettings", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettings", + "kind": "app", + "properties": { + "allowedExternalRedirectUrls": [ + "sitef6141.customdomain.net", + "sitef6141.customdomain.info" + ], + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "defaultProvider": "Google", + "enabled": true, + "runtimeVersion": "~1", + "tokenRefreshExtensionHours": 120, + "tokenStoreEnabled": true, + "unauthenticatedClientAction": "RedirectToLoginPage" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAuthSettings", + "title": "List Auth Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json new file mode 100644 index 000000000000..5c30be78c989 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json @@ -0,0 +1,88 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettingsv2", + "type": "Microsoft.Web/sites/authsettingsv2", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettingsv2", + "kind": "app", + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_GetAuthSettingsV2", + "title": "List Auth Settings V2" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json new file mode 100644 index 000000000000..2893cce04cbc --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Certificates_List", + "title": "List Certificates for subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json new file mode 100644 index 000000000000..aedc0408af9e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Certificates_ListByResourceGroup", + "title": "List Certificates by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json new file mode 100644 index 000000000000..3c01f9e6a02f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "00000000-0000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "mywebapp.azurewebsites.net", + "type": "Microsoft.Web/customhostnameSites", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/customhostnameSites/mywebapp.azurewebsites.net", + "properties": { + "customHostname": "mywebapp.azurewebsites.net", + "region": "West US", + "siteResourceIds": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus-rg/providers/Microsoft.Web/sites/mywebapp" + } + ] + } + }, + { + "name": "www.example.com", + "type": "Microsoft.Web/customhostnameSites", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/customhostnameSites/www.example.com", + "properties": { + "customHostname": "www.example.com", + "region": "West US 2", + "siteResourceIds": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app1" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app2" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app3" + } + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "ListCustomHostNameSites", + "title": "Get custom hostnames under subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json new file mode 100644 index 000000000000..9f343433f090 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "hostname": "www.example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "www.example.com", + "type": "Microsoft.Web/customhostnameSites", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/customhostnameSites/www.example.com", + "properties": { + "customHostname": "www.example.com", + "region": "West US 2", + "siteResourceIds": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app1" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app2" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus2-rg/providers/Microsoft.Web/sites/westus2app3" + } + ] + } + } + ] + }, + "headers": {} + } + }, + "operationId": "ListCustomHostNameSites", + "title": "Get specific custom hostname under subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json new file mode 100644 index 000000000000..804a026cb6d3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "location": "West US 2", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "wussite6", + "type": "Microsoft.Web/locations/deletedSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg1/providers/Microsoft.Web/locations/West US 2/deletedwebapps/wussite6", + "properties": { + "deletedSiteId": 9, + "deletedSiteName": "wussite6", + "deletedTimestamp": "2019-05-09T22:29:05.1337007", + "geoRegionName": "West US 2", + "kind": "app", + "resourceGroup": "rg1", + "slot": "Production", + "subscription": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "DeletedWebApps_ListByLocation", + "title": "List Deleted Web App by Location" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json new file mode 100644 index 000000000000..30e5104a458b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json @@ -0,0 +1,5843 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.Web/sites/Read", + "display": { + "description": "Get the properties of a Web App", + "operation": "Get Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/Write", + "display": { + "description": "Create a new Web App or update an existing one", + "operation": "Create or Update Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/Write", + "display": { + "description": "Create a new Web App Slot or update an existing one", + "operation": "Create or Update Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/Delete", + "display": { + "description": "Delete an existing Web App", + "operation": "Delete Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/Delete", + "display": { + "description": "Delete an existing Web App Slot", + "operation": "Delete Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/config/Read", + "display": { + "description": "Get Web App Slot's configuration settings", + "operation": "Get Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/config/Read", + "display": { + "description": "Get Web App configuration settings", + "operation": "Get Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/config/list/Action", + "display": { + "description": "List Web App's security sensitive settings, such as publishing credentials, app settings and connection strings", + "operation": "List Web App Security Sensitive Settings", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/config/list/Action", + "display": { + "description": "List Web App Slot's security sensitive settings, such as publishing credentials, app settings and connection strings", + "operation": "List Web App Slot Security Sensitive Settings", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/config/Write", + "display": { + "description": "Update Web App's configuration settings", + "operation": "Update Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/config/Write", + "display": { + "description": "Update Web App Slot's configuration settings", + "operation": "Update Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/sourcecontrols/Read", + "display": { + "description": "Get Web App's source control configuration settings", + "operation": "Get Web App Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/sourcecontrols/Read", + "display": { + "description": "Get Web App Slot's source control configuration settings", + "operation": "Get Web App Slot Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/sourcecontrols/Write", + "display": { + "description": "Update Web App's source control configuration settings", + "operation": "Update Web App Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/sourcecontrols/Write", + "display": { + "description": "Update Web App Slot's source control configuration settings", + "operation": "Update Web App Slot Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/sourcecontrols/Delete", + "display": { + "description": "Delete Web App's source control configuration settings", + "operation": "Delete Web App Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/sourcecontrols/Delete", + "display": { + "description": "Delete Web App Slot's source control configuration settings", + "operation": "Delete Web App Slot Source Control Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/backup/Action", + "display": { + "description": "Create a new web app backup", + "operation": "Create Web App Backup", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/backup/Action", + "display": { + "description": "Create new Web App Slot backup.", + "operation": "Create Web App Slot Backup", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/backups/Read", + "display": { + "description": "Get the properties of a web app's backup", + "operation": "Get Web App Backup", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/backups/Read", + "display": { + "description": "Get the properties of a web app slots' backup", + "operation": "List Web App Slot Backups", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/publishxml/Action", + "display": { + "description": "Get publishing profile xml for a Web App", + "operation": "Get Web App Publishing Profile", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/publishxml/Action", + "display": { + "description": "Get publishing profile xml for Web App Slot", + "operation": "Get Web App Slot Publishing Profile", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/publish/Action", + "display": { + "description": "Publish a Web App", + "operation": "Publish Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/publish/Action", + "display": { + "description": "Publish a Web App Slot", + "operation": "Publish Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/restart/Action", + "display": { + "description": "Restart a Web App", + "operation": "Restart Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/restart/Action", + "display": { + "description": "Restart a Web App Slot", + "operation": "Restart Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/start/Action", + "display": { + "description": "Start a Web App", + "operation": "Start Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/start/Action", + "display": { + "description": "Start a Web App Slot", + "operation": "Start Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/stop/Action", + "display": { + "description": "Stop a Web App", + "operation": "Stop Web App", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/stop/Action", + "display": { + "description": "Stop a Web App Slot", + "operation": "Stop Web App Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slotsswap/Action", + "display": { + "description": "Swap Web App deployment slots", + "operation": "Swap Web App Slots", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/slotsswap/Action", + "display": { + "description": "Swap Web App deployment slots", + "operation": "Swap Web App Slots", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slotsdiffs/Action", + "display": { + "description": "Get differences in configuration between web app and slots", + "operation": "Get Web App Slots Differences", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/slotsdiffs/Action", + "display": { + "description": "Get differences in configuration between web app and slots", + "operation": "Get Web App Slots Differences", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/applySlotConfig/Action", + "display": { + "description": "Apply web app slot configuration from target slot to the current web app", + "operation": "Apply Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/applySlotConfig/Action", + "display": { + "description": "Apply web app slot configuration from target slot to the current slot.", + "operation": "Apply Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/resetSlotConfig/Action", + "display": { + "description": "Reset web app configuration", + "operation": "Reset Web App Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/resetSlotConfig/Action", + "display": { + "description": "Reset web app slot configuration", + "operation": "Reset Web App Slot Configuration", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/slots/Read", + "display": { + "description": "Get the properties of a Web App deployment slot", + "operation": "Get Web App Deployment Slot", + "provider": "Microsoft Web Apps", + "resource": "Web App Slot" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/Read", + "display": { + "description": "Get the properties on an App Service Plan", + "operation": "Get App Service Plan", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/Write", + "display": { + "description": "Create a new App Service Plan or update an existing one", + "operation": "Create or Update App Service Plan", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/Delete", + "display": { + "description": "Delete an existing App Service Plan", + "operation": "Delete App Service Plan", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/restartSites/Action", + "display": { + "description": "Restart all Web Apps in an App Service Plan", + "operation": "Restart Web Apps", + "provider": "Microsoft Web Apps", + "resource": "App Service Plan" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/certificates/Read", + "display": { + "description": "Get the list of certificates.", + "operation": "Get Certificates", + "provider": "Microsoft Web Apps", + "resource": "Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/certificates/Write", + "display": { + "description": "Add a new certificate or update an existing one.", + "operation": "Add or Update Certificate", + "provider": "Microsoft Web Apps", + "resource": "Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/certificates/Delete", + "display": { + "description": "Delete an existing certificate.", + "operation": "Delete Certificate", + "provider": "Microsoft Web Apps", + "resource": "Certificate" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/aseRegions/Read", + "display": { + "description": "Get the list of ASE regions.", + "operation": "Get ASE Regions", + "provider": "Microsoft Web Apps", + "resource": "ASE Region" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/geoRegions/Read", + "display": { + "description": "Get the list of Geo regions.", + "operation": "Get Geo Regions", + "provider": "Microsoft Web Apps", + "resource": "Geo Region" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/listSitesAssignedToHostName/Read", + "display": { + "description": "Get names of sites assigned to hostname.", + "operation": "Get sites assigned to hostname", + "provider": "Microsoft Web Apps", + "resource": "Site Name" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/Read", + "display": { + "description": "Get the properties of an App Service Environment", + "operation": "Get App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/Write", + "display": { + "description": "Create a new App Service Environment or update existing one", + "operation": "Create or Update App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/Delete", + "display": { + "description": "Delete an App Service Environment", + "operation": "Delete App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/reboot/Action", + "display": { + "description": "Reboot all machines in an App Service Environment", + "operation": "Reboot an App Service Environment", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Read", + "display": { + "description": "Get the properties of a FrontEnd Pool in an App Service Environment", + "operation": "Get FrontEnd Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment FrontEnd Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/multiRolePools/Write", + "display": { + "description": "Create a new FrontEnd Pool in an App Service Environment or update an existing one", + "operation": "Create or Update FrontEnd Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment FrontEnd Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/workerPools/Read", + "display": { + "description": "Get the properties of a Worker Pool in an App Service Environment", + "operation": "Get Worker Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment Worker Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/hostingEnvironments/workerPools/Write", + "display": { + "description": "Create a new Worker Pool in an App Service Environment or update an existing one", + "operation": "Create or Update Worker Pool", + "provider": "Microsoft Web Apps", + "resource": "App Service Environment Worker Pool" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Read", + "display": { + "description": "Get the list of Connections.", + "operation": "Get Connections", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Write", + "display": { + "description": "Creates or updates a Connection.", + "operation": "Add or Update Connection", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Delete", + "display": { + "description": "Deletes a Connection.", + "operation": "Delete Connection", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connections/Join/Action", + "display": { + "description": "Joins a Connection.", + "operation": "Join Connection", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Read", + "display": { + "description": "Get the list of Connection Gateways.", + "operation": "Get Connection Gateways", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Write", + "display": { + "description": "Creates or updates a Connection Gateway.", + "operation": "Add or Update Connection Gateways", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Delete", + "display": { + "description": "Deletes a Connection Gateway.", + "operation": "Delete Connection Gateway", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/connectionGateways/Join/Action", + "display": { + "description": "Joins a Connection Gateway.", + "operation": "Join Connection Gateway", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/recommendations/Read", + "display": { + "description": "Get the list of recommendations for subscriptions.", + "operation": "Get recommendations", + "provider": "Microsoft Web Apps", + "resource": "Recommendation" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/sites/recommendations/Read", + "display": { + "description": "Get the list of recommendations for web app.", + "operation": "Get recommendations for web app", + "provider": "Microsoft Web Apps", + "resource": "Recommendation" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/availablestacks/read", + "display": { + "description": "Get Available Stacks.", + "operation": "Get Available Stacks", + "provider": "Microsoft Web Apps", + "resource": "Available Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/functionappstacks/read", + "display": { + "description": "Get Function App Stacks.", + "operation": "Get Function App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Function App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/webappstacks/read", + "display": { + "description": "Get Web App Stacks.", + "operation": "Get Web App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Web App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/checknameavailability/read", + "display": { + "description": "Check if resource name is available.", + "operation": "Get Check Name Availability", + "provider": "Microsoft Web Apps", + "resource": "Check Name Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/checknameavailability/read", + "display": { + "description": "Check if resource name is available for DNL apps.", + "operation": "Get Check Name Availability", + "provider": "Microsoft Web Apps", + "resource": "DNL Check Name Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/classicmobileservices/read", + "display": { + "description": "Get Classic Mobile Services.", + "operation": "Get Classic Mobile Services", + "provider": "Microsoft Web Apps", + "resource": "Classic Mobile Services" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/connections/confirmconsentcode/action", + "display": { + "description": "Confirm Connections Consent Code.", + "operation": "Confirm Connections Consent Code", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/connections/listconsentlinks/action", + "display": { + "description": "List Consent Links for Connections.", + "operation": "List Consent Links for Connections", + "provider": "Microsoft Web Apps", + "resource": "Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/deploymentlocations/read", + "display": { + "description": "Get Deployment Locations.", + "operation": "Get Deployment Locations", + "provider": "Microsoft Web Apps", + "resource": "Deployment Locations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/capacities/read", + "display": { + "description": "Get Hosting Environments Capacities.", + "operation": "Get Hosting Environments Capacities", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Capacities" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/diagnostics/read", + "display": { + "description": "Get Hosting Environments Diagnostics.", + "operation": "Get Hosting Environments Diagnostics", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Diagnostics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/metricdefinitions/read", + "display": { + "description": "Get Hosting Environments Metric Definitions.", + "operation": "Get Hosting Environments Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/metricdefinitions/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools Metric Definitions.", + "operation": "Get Hosting Environments MultiRole Pools Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/metrics/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools Metrics.", + "operation": "Get Hosting Environments MultiRole Pools Metrics", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/skus/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools SKUs.", + "operation": "Get Hosting Environments MultiRole Pools SKUs", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/multirolepools/usages/read", + "display": { + "description": "Get Hosting Environments MultiRole Pools Usages.", + "operation": "Get Hosting Environments MultiRole Pools Usages", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments MultiRole Pools Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/operations/read", + "display": { + "description": "Get Hosting Environments Operations.", + "operation": "Get Hosting Environments Operations", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/resume/action", + "display": { + "description": "Resume Hosting Environments.", + "operation": "Resume Hosting Environments", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/serverfarms/read", + "display": { + "description": "Get Hosting Environments App Service Plans.", + "operation": "Get Hosting Environments App Service Plans", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments App Service Plans" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/sites/read", + "display": { + "description": "Get Hosting Environments Web Apps.", + "operation": "Get Hosting Environments Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/suspend/action", + "display": { + "description": "Suspend Hosting Environments.", + "operation": "Suspend Hosting Environments", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/usages/read", + "display": { + "description": "Get Hosting Environments Usages.", + "operation": "Get Hosting Environments Usages", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/metricdefinitions/read", + "display": { + "description": "Get Hosting Environments Workerpools Metric Definitions.", + "operation": "Get Hosting Environments Workerpools Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/metrics/read", + "display": { + "description": "Get Hosting Environments Workerpools Metrics.", + "operation": "Get Hosting Environments Workerpools Metrics", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/skus/read", + "display": { + "description": "Get Hosting Environments Workerpools SKUs.", + "operation": "Get Hosting Environments Workerpools SKUs", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/hostingenvironments/workerpools/usages/read", + "display": { + "description": "Get Hosting Environments Workerpools Usages.", + "operation": "Get Hosting Environments Workerpools Usages", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environments Workerpools Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/ishostingenvironmentnameavailable/read", + "display": { + "description": "Get if Hosting Environment Name is available.", + "operation": "Check if Hosting Environment Name is available", + "provider": "Microsoft Web Apps", + "resource": "Hosting Environment Name" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/ishostnameavailable/read", + "display": { + "description": "Check if Hostname is Available.", + "operation": "Check if Hostname is Available", + "provider": "Microsoft Web Apps", + "resource": "Hostname" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/isusernameavailable/read", + "display": { + "description": "Check if Username is available.", + "operation": "Check if Username is available", + "provider": "Microsoft Web Apps", + "resource": "Username" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/apioperations/read", + "display": { + "description": "Get Locations API Operations.", + "operation": "Get Locations API Operations", + "provider": "Microsoft Web Apps", + "resource": "Locations API Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/connectiongatewayinstallations/read", + "display": { + "description": "Get Locations Connection Gateway Installations.", + "operation": "Get Locations Connection Gateway Installations", + "provider": "Microsoft Web Apps", + "resource": "Locations Connection Gateway Installations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/functionappstacks/read", + "display": { + "description": "Get Locations Function App Stacks.", + "operation": "Get Locations Function App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Locations Function App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/webappstacks/read", + "display": { + "description": "Get Locations Web App Stacks.", + "operation": "Get Locations Web App Stacks", + "provider": "Microsoft Web Apps", + "resource": "Locations Web App Stacks" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/locations/managedapis/read", + "display": { + "description": "Get Locations Managed APIs.", + "operation": "Get Locations Managed APIs", + "provider": "Microsoft Web Apps", + "resource": "Locations Managed APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/operations/read", + "display": { + "description": "Get Operations.", + "operation": "Get Operations", + "provider": "Microsoft Web Apps", + "resource": "Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/publishingusers/read", + "display": { + "description": "Get Publishing Users.", + "operation": "Get Publishing Users", + "provider": "Microsoft Web Apps", + "resource": "Publishing Users" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/publishingusers/write", + "display": { + "description": "Update Publishing Users.", + "operation": "Update Publishing Users", + "provider": "Microsoft Web Apps", + "resource": "Publishing Users" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/capabilities/read", + "display": { + "description": "Get App Service Plans Capabilities.", + "operation": "Get App Service Plans Capabilities", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Capabilities" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/firstpartyapps/settings/delete", + "display": { + "description": "Delete App Service Plans First Party Apps Settings.", + "operation": "Delete App Service Plans First Party Apps Settings", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans First Party Apps Settings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/firstpartyapps/settings/read", + "display": { + "description": "Get App Service Plans First Party Apps Settings.", + "operation": "Get App Service Plans First Party Apps Settings", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans First Party Apps Settings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/firstpartyapps/settings/write", + "display": { + "description": "Update App Service Plans First Party Apps Settings.", + "operation": "Update App Service Plans First Party Apps Settings", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans First Party Apps Settings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/sites/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps.", + "operation": "Get App Service Plans Hybrid Connection Namespaces Relays Web Apps", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Namespaces Relays Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionplanlimits/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Plan Limits.", + "operation": "Get App Service Plans Hybrid Connection Plan Limits", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Plan Limits" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionrelays/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Relays.", + "operation": "Get App Service Plans Hybrid Connection Relays", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/metricdefinitions/read", + "display": { + "description": "Get App Service Plans Metric Definitions.", + "operation": "Get App Service Plans Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/metrics/read", + "display": { + "description": "Get App Service Plans Metrics.", + "operation": "Get App Service Plans Metrics", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/operationresults/read", + "display": { + "description": "Get App Service Plans Operation Results.", + "operation": "Get App Service Plans Operation Results", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Operation Results" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/sites/read", + "display": { + "description": "Get App Service Plans Web Apps.", + "operation": "Get App Service Plans Web Apps", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/skus/read", + "display": { + "description": "Get App Service Plans SKUs.", + "operation": "Get App Service Plans SKUs", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/usages/read", + "display": { + "description": "Get App Service Plans Usages.", + "operation": "Get App Service Plans Usages", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/gateways/write", + "display": { + "description": "Update App Service Plans Virtual Network Connections Gateways.", + "operation": "Update App Service Plans Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/read", + "display": { + "description": "Get App Service Plans Virtual Network Connections.", + "operation": "Get App Service Plans Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/delete", + "display": { + "description": "Delete App Service Plans Virtual Network Connections Routes.", + "operation": "Delete App Service Plans Virtual Network Connections Routes", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Routes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/read", + "display": { + "description": "Get App Service Plans Virtual Network Connections Routes.", + "operation": "Get App Service Plans Virtual Network Connections Routes", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Routes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/virtualnetworkconnections/routes/write", + "display": { + "description": "Update App Service Plans Virtual Network Connections Routes.", + "operation": "Update App Service Plans Virtual Network Connections Routes", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Virtual Network Connections Routes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/workers/reboot/action", + "display": { + "description": "Reboot App Service Plans Workers.", + "operation": "Reboot App Service Plans Workers", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Workers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/analyzecustomhostname/read", + "display": { + "description": "Analyze Custom Hostname.", + "operation": "Analyze Custom Hostname", + "provider": "Microsoft Web Apps", + "resource": "Custom Hostname" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backup/read", + "display": { + "description": "Get Web Apps Backup.", + "operation": "Get Web Apps Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backup/write", + "display": { + "description": "Update Web Apps Backup.", + "operation": "Update Web Apps Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backups/list/action", + "display": { + "description": "List Web Apps Backups.", + "operation": "List Web Apps Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backups/restore/action", + "display": { + "description": "Restore Web Apps Backups.", + "operation": "Restore Web Apps Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/config/delete", + "display": { + "description": "Delete Web Apps Config.", + "operation": "Delete Web Apps Config", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Config" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/delete", + "display": { + "description": "Delete Web Apps Continuous Web Jobs.", + "operation": "Delete Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/read", + "display": { + "description": "Get Web Apps Continuous Web Jobs.", + "operation": "Get Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/start/action", + "display": { + "description": "Start Web Apps Continuous Web Jobs.", + "operation": "Start Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/continuouswebjobs/stop/action", + "display": { + "description": "Stop Web Apps Continuous Web Jobs.", + "operation": "Stop Web Apps Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/delete", + "display": { + "description": "Delete Web Apps Deployments.", + "operation": "Delete Web Apps Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/log/read", + "display": { + "description": "Get Web Apps Deployments Log.", + "operation": "Get Web Apps Deployments Log", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments Log" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/read", + "display": { + "description": "Get Web Apps Deployments.", + "operation": "Get Web Apps Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/deployments/write", + "display": { + "description": "Update Web Apps Deployments.", + "operation": "Update Web Apps Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/frebanalysis/read", + "display": { + "description": "Get Web Apps Diagnostics FREB Analysis.", + "operation": "Get Web Apps Diagnostics FREB Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics FREB Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/frebanalysis/read", + "display": { + "description": "Get Web Apps Slots Diagnostics FREB Analysis.", + "operation": "Get Web Apps Slots Diagnostics FREB Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics FREB Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/read", + "display": { + "description": "Get Web Apps Diagnostics Categories.", + "operation": "Get Web Apps Diagnostics Category", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Category" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/runtimeavailability/read", + "display": { + "description": "Get Web Apps Diagnostics Runtime Availability.", + "operation": "Get Web Apps Diagnostics Runtime Availability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Runtime Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/servicehealth/read", + "display": { + "description": "Get Web Apps Diagnostics Service Health.", + "operation": "Get Web Apps Diagnostics Service Health", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Service Health" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/workeravailability/read", + "display": { + "description": "Get Web Apps Diagnostics Workeravailability.", + "operation": "Get Web Apps Diagnostics Workeravailability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Workeravailability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/workeravailability/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Workeravailability.", + "operation": "Get Web Apps Slots Diagnostics Workeravailability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Workeravailability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/workerprocessrecycle/read", + "display": { + "description": "Get Web Apps Diagnostics Worker Process Recycle.", + "operation": "Get Web Apps Diagnostics Worker Process Recycle", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Worker Process Recycle" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/workerprocessrecycle/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Worker Process Recycle.", + "operation": "Get Web Apps Slots Diagnostics Worker Process Recycle", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Worker Process Recycle" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/aspnetcore/read", + "display": { + "description": "Get Web Apps Diagnostics for ASP.NET Core app.", + "operation": "Get Web Apps Diagnostics ASP.NET Core", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics ASP.NET Core" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/aspnetcore/read", + "display": { + "description": "Get Web Apps Slots Diagnostics for ASP.NET Core app.", + "operation": "Get Web Apps Slots Diagnostics ASP.NET Core", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics ASP.NET Core" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/domainownershipidentifiers/read", + "display": { + "description": "Get Web Apps Domain Ownership Identifiers.", + "operation": "Get Web Apps Domain Ownership Identifiers", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Domain Ownership Identifiers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/domainownershipidentifiers/write", + "display": { + "description": "Update Web Apps Domain Ownership Identifiers.", + "operation": "Update Web Apps Domain Ownership Identifiers", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Domain Ownership Identifiers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/action", + "display": { + "description": "Functions Web Apps.", + "operation": "Functions Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/delete", + "display": { + "description": "Delete Web Apps Functions.", + "operation": "Delete Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/listsecrets/action", + "display": { + "description": "List Secrets Web Apps Functions.", + "operation": "List Secrets Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/read", + "display": { + "description": "Get Web Apps Functions.", + "operation": "Get Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/write", + "display": { + "description": "Update Web Apps Functions.", + "operation": "Update Web Apps Functions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hostnamebindings/delete", + "display": { + "description": "Delete Web Apps Hostname Bindings.", + "operation": "Delete Web Apps Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hostnamebindings/read", + "display": { + "description": "Get Web Apps Hostname Bindings.", + "operation": "Get Web Apps Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hostnamebindings/write", + "display": { + "description": "Update Web Apps Hostname Bindings.", + "operation": "Update Web Apps Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnection/delete", + "display": { + "description": "Delete Web Apps Hybrid Connection.", + "operation": "Delete Web Apps Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnection/read", + "display": { + "description": "Get Web Apps Hybrid Connection.", + "operation": "Get Web Apps Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnection/write", + "display": { + "description": "Update Web Apps Hybrid Connection.", + "operation": "Update Web Apps Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionrelays/read", + "display": { + "description": "Get Web Apps Hybrid Connection Relays.", + "operation": "Get Web Apps Hybrid Connection Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/deployments/read", + "display": { + "description": "Get Web Apps Instances Deployments.", + "operation": "Get Web Apps Instances Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/processes/delete", + "display": { + "description": "Delete Web Apps Instances Processes.", + "operation": "Delete Web Apps Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/processes/read", + "display": { + "description": "Get Web Apps Instances Processes.", + "operation": "Get Web Apps Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/read", + "display": { + "description": "Get Web Apps Instances.", + "operation": "Get Web Apps Instances", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/listsyncfunctiontriggerstatus/action", + "display": { + "description": "List Sync Function Trigger Status Web Apps.", + "operation": "List Sync Function Trigger Status Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/metricdefinitions/read", + "display": { + "description": "Get Web Apps Metric Definitions.", + "operation": "Get Web Apps Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/metrics/read", + "display": { + "description": "Get Web Apps Metrics.", + "operation": "Get Web Apps Metrics", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/networktrace/action", + "display": { + "description": "Network Trace Web Apps.", + "operation": "Network Trace Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/newpassword/action", + "display": { + "description": "Newpassword Web Apps.", + "operation": "Newpassword Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/operationresults/read", + "display": { + "description": "Get Web Apps Operation Results.", + "operation": "Get Web Apps Operation Results", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Operation Results" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/perfcounters/read", + "display": { + "description": "Get Web Apps Performance Counters.", + "operation": "Get Web Apps Performance Counters", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Performance Counters" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/premieraddons/delete", + "display": { + "description": "Delete Web Apps Premier Addons.", + "operation": "Delete Web Apps Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/premieraddons/read", + "display": { + "description": "Get Web Apps Premier Addons.", + "operation": "Get Web Apps Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/premieraddons/write", + "display": { + "description": "Update Web Apps Premier Addons.", + "operation": "Update Web Apps Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publishxml/read", + "display": { + "description": "Get Web Apps Publishing XML.", + "operation": "Get Web Apps Publishing XML", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Publishing XML" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/recommendationhistory/read", + "display": { + "description": "Get Web Apps Recommendation History.", + "operation": "Get Web Apps Recommendation History", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Recommendation History" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/recommendations/disable/action", + "display": { + "description": "Disable Web Apps Recommendations.", + "operation": "Disable Web Apps Recommendations", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Recommendations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/restore/read", + "display": { + "description": "Get Web Apps Restore.", + "operation": "Get Web Apps Restore", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Restore" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/analyzecustomhostname/read", + "display": { + "description": "Get Web Apps Slots Analyze Custom Hostname.", + "operation": "Get Web Apps Slots Analyze Custom Hostname", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Analyze Custom Hostname" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backup/write", + "display": { + "description": "Update Web Apps Slots Backup.", + "operation": "Update Web Apps Slots Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backups/list/action", + "display": { + "description": "List Web Apps Slots Backups.", + "operation": "List Web Apps Slots Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backups/restore/action", + "display": { + "description": "Restore Web Apps Slots Backups.", + "operation": "Restore Web Apps Slots Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/config/delete", + "display": { + "description": "Delete Web Apps Slots Config.", + "operation": "Delete Web Apps Slots Config", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Config" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/delete", + "display": { + "description": "Delete Web Apps Slots Continuous Web Jobs.", + "operation": "Delete Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/read", + "display": { + "description": "Get Web Apps Slots Continuous Web Jobs.", + "operation": "Get Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/start/action", + "display": { + "description": "Start Web Apps Slots Continuous Web Jobs.", + "operation": "Start Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/continuouswebjobs/stop/action", + "display": { + "description": "Stop Web Apps Slots Continuous Web Jobs.", + "operation": "Stop Web Apps Slots Continuous Web Jobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Continuous Web Jobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/delete", + "display": { + "description": "Delete Web Apps Slots Deployments.", + "operation": "Delete Web Apps Slots Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/log/read", + "display": { + "description": "Get Web Apps Slots Deployments Log.", + "operation": "Get Web Apps Slots Deployments Log", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments Log" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/read", + "display": { + "description": "Get Web Apps Slots Deployments.", + "operation": "Get Web Apps Slots Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/deployments/write", + "display": { + "description": "Update Web Apps Slots Deployments.", + "operation": "Update Web Apps Slots Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hostnamebindings/delete", + "display": { + "description": "Delete Web Apps Slots Hostname Bindings.", + "operation": "Delete Web Apps Slots Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hostnamebindings/read", + "display": { + "description": "Get Web Apps Slots Hostname Bindings.", + "operation": "Get Web Apps Slots Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hostnamebindings/write", + "display": { + "description": "Update Web Apps Slots Hostname Bindings.", + "operation": "Update Web Apps Slots Hostname Bindings", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hostname Bindings" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnection/delete", + "display": { + "description": "Delete Web Apps Slots Hybrid Connection.", + "operation": "Delete Web Apps Slots Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnection/read", + "display": { + "description": "Get Web Apps Slots Hybrid Connection.", + "operation": "Get Web Apps Slots Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnection/write", + "display": { + "description": "Update Web Apps Slots Hybrid Connection.", + "operation": "Update Web Apps Slots Hybrid Connection", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/instances/deployments/read", + "display": { + "description": "Get Web Apps Slots Instances Deployments.", + "operation": "Get Web Apps Slots Instances Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/instances/processes/read", + "display": { + "description": "Get Web Apps Slots Instances Processes.", + "operation": "Get Web Apps Slots Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/instances/read", + "display": { + "description": "Get Web Apps Slots Instances.", + "operation": "Get Web Apps Slots Instances", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/metricdefinitions/read", + "display": { + "description": "Get Web Apps Slots Metric Definitions.", + "operation": "Get Web Apps Slots Metric Definitions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Metric Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/metrics/read", + "display": { + "description": "Get Web Apps Slots Metrics.", + "operation": "Get Web Apps Slots Metrics", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Metrics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/newpassword/action", + "display": { + "description": "Newpassword Web Apps Slots.", + "operation": "Newpassword Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/operationresults/read", + "display": { + "description": "Get Web Apps Slots Operation Results.", + "operation": "Get Web Apps Slots Operation Results", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Operation Results" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/phplogging/read", + "display": { + "description": "Get Web Apps Slots Phplogging.", + "operation": "Get Web Apps Slots Phplogging", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Phplogging" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/premieraddons/delete", + "display": { + "description": "Delete Web Apps Slots Premier Addons.", + "operation": "Delete Web Apps Slots Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/premieraddons/read", + "display": { + "description": "Get Web Apps Slots Premier Addons.", + "operation": "Get Web Apps Slots Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/premieraddons/write", + "display": { + "description": "Update Web Apps Slots Premier Addons.", + "operation": "Update Web Apps Slots Premier Addons", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Premier Addons" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/restore/read", + "display": { + "description": "Get Web Apps Slots Restore.", + "operation": "Get Web Apps Slots Restore", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Restore" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/sync/action", + "display": { + "description": "Sync Web Apps Slots.", + "operation": "Sync Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/triggeredwebjobs/delete", + "display": { + "description": "Delete Web Apps Slots Triggered WebJobs.", + "operation": "Delete Web Apps Slots Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/triggeredwebjobs/read", + "display": { + "description": "Get Web Apps Slots Triggered WebJobs.", + "operation": "Get Web Apps Slots Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/triggeredwebjobs/run/action", + "display": { + "description": "Run Web Apps Slots Triggered WebJobs.", + "operation": "Run Web Apps Slots Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/usages/read", + "display": { + "description": "Get Web Apps Slots Usages.", + "operation": "Get Web Apps Slots Usages", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/delete", + "display": { + "description": "Delete Web Apps Slots Virtual Network Connections.", + "operation": "Delete Web Apps Slots Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/gateways/write", + "display": { + "description": "Update Web Apps Slots Virtual Network Connections Gateways.", + "operation": "Update Web Apps Slots Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/read", + "display": { + "description": "Get Web Apps Slots Virtual Network Connections.", + "operation": "Get Web Apps Slots Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/virtualnetworkconnections/write", + "display": { + "description": "Update Web Apps Slots Virtual Network Connections.", + "operation": "Update Web Apps Slots Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/webjobs/read", + "display": { + "description": "Get Web Apps Slots WebJobs.", + "operation": "Get Web Apps Slots WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/snapshots/read", + "display": { + "description": "Get Web Apps Snapshots.", + "operation": "Get Web Apps Snapshots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Snapshots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/sync/action", + "display": { + "description": "Sync Web Apps.", + "operation": "Sync Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/delete", + "display": { + "description": "Delete Web Apps Triggered WebJobs.", + "operation": "Delete Web Apps Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/read", + "display": { + "description": "Get Web Apps Triggered WebJobs.", + "operation": "Get Web Apps Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/run/action", + "display": { + "description": "Run Web Apps Triggered WebJobs.", + "operation": "Run Web Apps Triggered WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/usages/read", + "display": { + "description": "Get Web Apps Usages.", + "operation": "Get Web Apps Usages", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Usages" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/delete", + "display": { + "description": "Delete Web Apps Virtual Network Connections.", + "operation": "Delete Web Apps Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/gateways/read", + "display": { + "description": "Get Web Apps Virtual Network Connections Gateways.", + "operation": "Get Web Apps Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/gateways/write", + "display": { + "description": "Update Web Apps Virtual Network Connections Gateways.", + "operation": "Update Web Apps Virtual Network Connections Gateways", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/read", + "display": { + "description": "Get Web Apps Virtual Network Connections.", + "operation": "Get Web Apps Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/virtualnetworkconnections/write", + "display": { + "description": "Update Web Apps Virtual Network Connections.", + "operation": "Update Web Apps Virtual Network Connections", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Virtual Network Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/webjobs/read", + "display": { + "description": "Get Web Apps WebJobs.", + "operation": "Get Web Apps WebJobs", + "provider": "Microsoft Web Apps", + "resource": "Web Apps WebJobs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/skus/read", + "display": { + "description": "Get SKUs.", + "operation": "Get SKUs", + "provider": "Microsoft Web Apps", + "resource": "SKUs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sourcecontrols/read", + "display": { + "description": "Get Source Controls.", + "operation": "Get Source Controls", + "provider": "Microsoft Web Apps", + "resource": "Source Controls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sourcecontrols/write", + "display": { + "description": "Update Source Controls.", + "operation": "Update Source Controls", + "provider": "Microsoft Web Apps", + "resource": "Source Controls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/unregister/action", + "display": { + "description": "Unregister Microsoft.Web resource provider for the subscription.", + "operation": "Unregister Microsoft.Web resource provider", + "provider": "Microsoft Web Apps", + "resource": "Microsoft.Web resource provider" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/validate/action", + "display": { + "description": "Validate .", + "operation": "Validate ", + "provider": "Microsoft Web Apps", + "resource": "" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/register/action", + "display": { + "description": "Register Microsoft.Web resource provider for the subscription.", + "operation": "Register Microsoft.Web resource provider", + "provider": "Microsoft Web Apps", + "resource": "Microsoft.Web resource provider" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/read", + "display": { + "description": "Get App Service Plans Hybrid Connection Namespaces Relays.", + "operation": "Get App Service Plans Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/backups/delete", + "display": { + "description": "Delete Web Apps Backups.", + "operation": "Delete Web Apps Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/delete", + "display": { + "description": "Delete Web Apps Hybrid Connection Namespaces Relays.", + "operation": "Delete Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/listkeys/action", + "display": { + "description": "List Keys Web Apps Hybrid Connection Namespaces Relays.", + "operation": "List Keys Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/write", + "display": { + "description": "Update Web Apps Hybrid Connection Namespaces Relays.", + "operation": "Update Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/metricsdefinitions/read", + "display": { + "description": "Get Web Apps Metrics Definitions.", + "operation": "Get Web Apps Metrics Definitions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Metrics Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/migratemysql/action", + "display": { + "description": "Migrate MySql Web Apps.", + "operation": "Migrate MySql Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/migratemysql/read", + "display": { + "description": "Get Web Apps Migrate MySql.", + "operation": "Get Web Apps Migrate MySql", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Migrate MySql" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/recover/action", + "display": { + "description": "Recover Web Apps.", + "operation": "Recover Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/siteextensions/delete", + "display": { + "description": "Delete Web Apps Site Extensions.", + "operation": "Delete Web Apps Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/siteextensions/read", + "display": { + "description": "Get Web Apps Site Extensions.", + "operation": "Get Web Apps Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/siteextensions/write", + "display": { + "description": "Update Web Apps Site Extensions.", + "operation": "Update Web Apps Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backup/read", + "display": { + "description": "Get Web Apps Slots Backup.", + "operation": "Get Web Apps Slots Backup", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backup" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnectionrelays/read", + "display": { + "description": "Get Web Apps Slots Hybrid Connection Relays.", + "operation": "Get Web Apps Slots Hybrid Connection Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/siteextensions/delete", + "display": { + "description": "Delete Web Apps Slots Site Extensions.", + "operation": "Delete Web Apps Slots Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/siteextensions/read", + "display": { + "description": "Get Web Apps Slots Site Extensions.", + "operation": "Get Web Apps Slots Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/siteextensions/write", + "display": { + "description": "Update Web Apps Slots Site Extensions.", + "operation": "Update Web Apps Slots Site Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Site Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/snapshots/read", + "display": { + "description": "Get Web Apps Slots Snapshots.", + "operation": "Get Web Apps Slots Snapshots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Snapshots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/syncfunctiontriggers/action", + "display": { + "description": "Sync Function Triggers for Web Apps.", + "operation": "Sync Function Triggers for Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/triggeredwebjobs/history/read", + "display": { + "description": "Get Web Apps Triggered WebJobs History.", + "operation": "Get Web Apps Triggered WebJobs History", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Triggered WebJobs History" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/connectiongateways/liststatus/action", + "display": { + "description": "List Status Connection Gateways.", + "operation": "List Status Connection Gateways", + "provider": "Microsoft Web Apps", + "resource": "Connection Gateways" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/serverfarms/hybridconnectionnamespaces/relays/delete", + "display": { + "description": "Delete App Service Plans Hybrid Connection Namespaces Relays.", + "operation": "Delete App Service Plans Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "App Service Plans Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/deployment/read", + "display": { + "description": "Get Web Apps Diagnostics Deployment.", + "operation": "Get Web Apps Diagnostics Deployment", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Deployment" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitecpuanalysis/read", + "display": { + "description": "Get Web Apps Diagnostics Site CPU Analysis.", + "operation": "Get Web Apps Diagnostics Site CPU Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site CPU Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitelatency/read", + "display": { + "description": "Get Web Apps Diagnostics Site Latency.", + "operation": "Get Web Apps Diagnostics Site Latency", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Latency" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitememoryanalysis/read", + "display": { + "description": "Get Web Apps Diagnostics Site Memory Analysis.", + "operation": "Get Web Apps Diagnostics Site Memory Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Memory Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/threadcount/read", + "display": { + "description": "Get Web Apps Diagnostics Thread Count.", + "operation": "Get Web Apps Diagnostics Thread Count", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Thread Count" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/deployment/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Deployment.", + "operation": "Get Web Apps Slots Diagnostics Deployment", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Deployment" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitecpuanalysis/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site CPU Analysis.", + "operation": "Get Web Apps Slots Diagnostics Site CPU Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site CPU Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Latency.", + "operation": "Get Web Apps Slots Diagnostics Site Latency", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Latency" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitememoryanalysis/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Memory Analysis.", + "operation": "Get Web Apps Slots Diagnostics Site Memory Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Memory Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/threadcount/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Thread Count.", + "operation": "Get Web Apps Slots Diagnostics Thread Count", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Thread Count" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/masterkey/read", + "display": { + "description": "Get Web Apps Functions Masterkey.", + "operation": "Get Web Apps Functions Masterkey", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions Masterkey" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/hybridconnectionnamespaces/relays/read", + "display": { + "description": "Get Web Apps Hybrid Connection Namespaces Relays.", + "operation": "Get Web Apps Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/extensions/read", + "display": { + "description": "Get Web Apps Instances Extensions.", + "operation": "Get Web Apps Instances Extensions", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Extensions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/operations/read", + "display": { + "description": "Get Web Apps Operations.", + "operation": "Get Web Apps Operations", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/resourcehealthmetadata/read", + "display": { + "description": "Get Web Apps Resource Health Metadata.", + "operation": "Get Web Apps Resource Health Metadata", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Resource Health Metadata" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/backups/delete", + "display": { + "description": "Delete Web Apps Slots Backups.", + "operation": "Delete Web Apps Slots Backups", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Backups" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/domainownershipidentifiers/read", + "display": { + "description": "Get Web Apps Slots Domain Ownership Identifiers.", + "operation": "Get Web Apps Slots Domain Ownership Identifiers", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Domain Ownership Identifiers" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/delete", + "display": { + "description": "Delete Web Apps Slots Hybrid Connection Namespaces Relays.", + "operation": "Delete Web Apps Slots Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/hybridconnectionnamespaces/relays/write", + "display": { + "description": "Update Web Apps Slots Hybrid Connection Namespaces Relays.", + "operation": "Update Web Apps Slots Hybrid Connection Namespaces Relays", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Hybrid Connection Namespaces Relays" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/operations/read", + "display": { + "description": "Get Web Apps Slots Operations.", + "operation": "Get Web Apps Slots Operations", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Operations" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/perfcounters/read", + "display": { + "description": "Get Web Apps Slots Performance Counters.", + "operation": "Get Web Apps Slots Performance Counters", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Performance Counters" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/resourcehealthmetadata/read", + "display": { + "description": "Get Web Apps Slots Resource Health Metadata.", + "operation": "Get Web Apps Slots Resource Health Metadata", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Resource Health Metadata" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apiacls/read", + "display": { + "description": "Get Api Management Accounts Apiacls.", + "operation": "Get Api Management Accounts Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/read", + "display": { + "description": "Get Api Management Accounts APIs Connections.", + "operation": "Get Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/read", + "display": { + "description": "Get Api Management Accounts APIs.", + "operation": "Get Api Management Accounts APIs", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/connectionacls/read", + "display": { + "description": "Get Api Management Accounts Connectionacls.", + "operation": "Get Api Management Accounts Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/apiacls/delete", + "display": { + "description": "Delete Api Management Accounts APIs Apiacls.", + "operation": "Delete Api Management Accounts APIs Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/apiacls/read", + "display": { + "description": "Get Api Management Accounts APIs Apiacls.", + "operation": "Get Api Management Accounts APIs Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/apiacls/write", + "display": { + "description": "Update Api Management Accounts APIs Apiacls.", + "operation": "Update Api Management Accounts APIs Apiacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Apiacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connectionacls/read", + "display": { + "description": "Get Api Management Accounts APIs Connectionacls.", + "operation": "Get Api Management Accounts APIs Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/confirmconsentcode/action", + "display": { + "description": "Confirm Consent Code Api Management Accounts APIs Connections.", + "operation": "Confirm Consent Code Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/delete", + "display": { + "description": "Delete Api Management Accounts APIs Connections Connectionacls.", + "operation": "Delete Api Management Accounts APIs Connections Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/read", + "display": { + "description": "Get Api Management Accounts APIs Connections Connectionacls.", + "operation": "Get Api Management Accounts APIs Connections Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/connectionacls/write", + "display": { + "description": "Update Api Management Accounts APIs Connections Connectionacls.", + "operation": "Update Api Management Accounts APIs Connections Connectionacls", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections Connectionacls" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/delete", + "display": { + "description": "Delete Api Management Accounts APIs Connections.", + "operation": "Delete Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/getconsentlinks/action", + "display": { + "description": "Get Consent Links for Api Management Accounts APIs Connections.", + "operation": "Get Consent Links for Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/write", + "display": { + "description": "Update Api Management Accounts APIs Connections.", + "operation": "Update Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/delete", + "display": { + "description": "Delete Api Management Accounts APIs.", + "operation": "Delete Api Management Accounts APIs", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/delete", + "display": { + "description": "Delete Api Management Accounts APIs Localized Definitions.", + "operation": "Delete Api Management Accounts APIs Localized Definitions", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Localized Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/read", + "display": { + "description": "Get Api Management Accounts APIs Localized Definitions.", + "operation": "Get Api Management Accounts APIs Localized Definitions", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Localized Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/localizeddefinitions/write", + "display": { + "description": "Update Api Management Accounts APIs Localized Definitions.", + "operation": "Update Api Management Accounts APIs Localized Definitions", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Localized Definitions" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/write", + "display": { + "description": "Update Api Management Accounts APIs.", + "operation": "Update Api Management Accounts APIs", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/listconnectionkeys/action", + "display": { + "description": "List Connection Keys Api Management Accounts APIs Connections.", + "operation": "List Connection Keys Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/apimanagementaccounts/apis/connections/listsecrets/action", + "display": { + "description": "List Secrets Api Management Accounts APIs Connections.", + "operation": "List Secrets Api Management Accounts APIs Connections", + "provider": "Microsoft Web Apps", + "resource": "Api Management Accounts APIs Connections" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/deployments/read", + "display": { + "description": "Get Web Apps Diagnostics Deployments.", + "operation": "Get Web Apps Diagnostics Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/deployments/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Deployments.", + "operation": "Get Web Apps Slots Diagnostics Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/loganalyzer/read", + "display": { + "description": "Get Web Apps Diagnostics Log Analyzer.", + "operation": "Get Web Apps Diagnostics Log Analyzer", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Log Analyzer" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/loganalyzer/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Log Analyzer.", + "operation": "Get Web Apps Slots Diagnostics Log Analyzer", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Log Analyzer" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/sitecrashes/read", + "display": { + "description": "Get Web Apps Diagnostics Site Crashes.", + "operation": "Get Web Apps Diagnostics Site Crashes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Crashes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitecrashes/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Crashes.", + "operation": "Get Web Apps Slots Diagnostics Site Crashes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Crashes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/siterestartsettingupdate/read", + "display": { + "description": "Get Web Apps Diagnostics Site Restart Setting Update.", + "operation": "Get Web Apps Diagnostics Site Restart Setting Update", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Restart Setting Update" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/siterestartsettingupdate/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Restart Setting Update.", + "operation": "Get Web Apps Slots Diagnostics Site Restart Setting Update", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Restart Setting Update" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/siterestartuserinitiated/read", + "display": { + "description": "Get Web Apps Diagnostics Site Restart User Initiated.", + "operation": "Get Web Apps Diagnostics Site Restart User Initiated", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Restart User Initiated" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/siterestartuserinitiated/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Restart User Initiated.", + "operation": "Get Web Apps Slots Diagnostics Site Restart User Initiated", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Restart User Initiated" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/siteswap/read", + "display": { + "description": "Get Web Apps Diagnostics Site Swap.", + "operation": "Get Web Apps Diagnostics Site Swap", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Site Swap" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/siteswap/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Swap.", + "operation": "Get Web Apps Slots Diagnostics Site Swap", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Swap" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/functions/token/read", + "display": { + "description": "Get Web Apps Functions Token.", + "operation": "Get Web Apps Functions Token", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Functions Token" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/deployments/delete", + "display": { + "description": "Delete Web Apps Instances Deployments.", + "operation": "Delete Web Apps Instances Deployments", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Deployments" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/processes/read", + "display": { + "description": "Get Web Apps Processes.", + "operation": "Get Web Apps Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publiccertificates/delete", + "display": { + "description": "Delete Web Apps Public Certificates.", + "operation": "Delete Web Apps Public Certificates", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Public Certificates" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publiccertificates/read", + "display": { + "description": "Get Web Apps Public Certificates.", + "operation": "Get Web Apps Public Certificates", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Public Certificates" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/publiccertificates/write", + "display": { + "description": "Update Web Apps Public Certificates.", + "operation": "Update Web Apps Public Certificates", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Public Certificates" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/networktrace/action", + "display": { + "description": "Network Trace Web Apps Slots.", + "operation": "Network Trace Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/autoheal/read", + "display": { + "description": "Get Web Apps Diagnostics Autoheal.", + "operation": "Get Web Apps Diagnostics Autoheal", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Autoheal" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/autoheal/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Autoheal.", + "operation": "Get Web Apps Slots Diagnostics Autoheal", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Autoheal" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/read", + "display": { + "description": "Get Web Apps Slots Diagnostics.", + "operation": "Get Web Apps Slots Diagnostics", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/runtimeavailability/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Runtime Availability.", + "operation": "Get Web Apps Slots Diagnostics Runtime Availability", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Runtime Availability" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/servicehealth/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Service Health.", + "operation": "Get Web Apps Slots Diagnostics Service Health", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Service Health" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/sitelatency/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Site Latency.", + "operation": "Get Web Apps Slots Diagnostics Site Latency", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Site Latency" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/migratemysql/read", + "display": { + "description": "Get Web Apps Slots Migrate MySql.", + "operation": "Get Web Apps Slots Migrate MySql", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Migrate MySql" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App slot" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/slots/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for Web App slot" + }, + "origin": "system" + }, + { + "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service plan" + }, + "origin": "system" + }, + { + "name": "microsoft.web/serverfarms/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service plan" + }, + "origin": "system" + }, + { + "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/read", + "display": { + "description": "Gets the diagnostic setting for the resource", + "operation": "Read diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service Environment" + }, + "origin": "system" + }, + { + "name": "microsoft.web/hostingenvironments/providers/Microsoft.Insights/diagnosticSettings/write", + "display": { + "description": "Creates or updates the diagnostic setting for the resource", + "operation": "Write diagnostic setting", + "provider": "Microsoft Web Apps", + "resource": "Diagnostic setting for App Service Environment" + }, + "origin": "system" + }, + { + "name": "microsoft.web/billingmeters/read", + "display": { + "description": "Get list of billing meters.", + "operation": "Read billing meters", + "provider": "Microsoft Web Apps", + "resource": "Billing meters for Microsoft Web Apps" + }, + "origin": "system" + }, + { + "name": "microsoft.web/sites/slots/instances/processes/delete", + "display": { + "description": "Delete Web Apps Slots Instances Processes.", + "operation": "Delete Web Apps Slots Instances Processes", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Instances Processes" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/restore/write", + "display": { + "description": "Restore Web Apps.", + "operation": "Restore Web Apps", + "provider": "Microsoft Web Apps", + "resource": "Web Apps" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/instances/extensions/log/read", + "display": { + "description": "Get Web Apps Instances Extensions Log.", + "operation": "Get Web Apps Instances Extensions Log", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Instances Extensions Log" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/customapis/write", + "display": { + "description": "Update Custom APIs.", + "operation": "Update Custom APIs", + "provider": "Microsoft Web Apps", + "resource": "Custom APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/customapis/read", + "display": { + "description": "Get Custom APIs.", + "operation": "Get Custom APIs", + "provider": "Microsoft Web Apps", + "resource": "Custom APIs" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/failedrequestsperuri/read", + "display": { + "description": "Get Web Apps Diagnostics Failed Requests Per Uri.", + "operation": "Get Web Apps Diagnostics Failed Requests Per Uri", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Failed Requests Per Uri" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/restore/write", + "display": { + "description": "Restore Web Apps Slots.", + "operation": "Restore Web Apps Slots", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/detectors/read", + "display": { + "description": "Get Web Apps Diagnostics Detector.", + "operation": "Get Web Apps Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/analyses/read", + "display": { + "description": "Get Web Apps Diagnostics Analysis.", + "operation": "Get Web Apps Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/analyses/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Analysis.", + "operation": "Get Web Apps Slots Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/detectors/read", + "display": { + "description": "Get Web Apps Slots Diagnostics Detector.", + "operation": "Get Web Apps Slots Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/analyses/execute/Action", + "display": { + "description": "Run Web Apps Diagnostics Analysis.", + "operation": "Run Web Apps Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/diagnostics/detectors/execute/Action", + "display": { + "description": "Run Web Apps Diagnostics Detector.", + "operation": "Run Web Apps Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/analyses/execute/Action", + "display": { + "description": "Run Web Apps Slots Diagnostics Analysis.", + "operation": "Run Web Apps Slots Diagnostics Analysis", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Analysis" + }, + "origin": "user,system" + }, + { + "name": "microsoft.web/sites/slots/diagnostics/detectors/execute/Action", + "display": { + "description": "Run Web Apps Slots Diagnostics Detector.", + "operation": "Run Web Apps Slots Diagnostics Detector", + "provider": "Microsoft Web Apps", + "resource": "Web Apps Slots Diagnostics Detector" + }, + "origin": "user,system" + }, + { + "name": "Microsoft.Web/serverfarms/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for App Service Plan", + "operation": "Read App Service Plan metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of App Service Plan" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "CpuPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Percentage", + "displayName": "CPU Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "MemoryPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory Percentage", + "displayName": "Memory Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "DiskQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Disk Queue Length", + "displayName": "Disk Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "HttpQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Queue Length", + "displayName": "Http Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + } + ] + } + } + }, + { + "name": "Microsoft.Web/sites/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for Web App", + "operation": "Read Web App metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of Web App" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "CpuTime", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Time", + "displayName": "CPU Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "Requests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Requests", + "displayName": "Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "Http101", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 101", + "displayName": "Http 101", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http2xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 2xx", + "displayName": "Http 2xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http3xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 3xx", + "displayName": "Http 3xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http401", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 401", + "displayName": "Http 401", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http403", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 403", + "displayName": "Http 403", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http404", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 404", + "displayName": "Http 404", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http406", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 406", + "displayName": "Http 406", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http4xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 4xx", + "displayName": "Http 4xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http5xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Server Errors", + "displayName": "Http Server Errors", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "MemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory working set", + "displayName": "Memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageMemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average memory working set", + "displayName": "Average memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageResponseTime", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average Response Time", + "displayName": "Average Response Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "FunctionExecutionUnits", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Units", + "displayName": "Function Execution Units", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "FunctionExecutionCount", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Count", + "displayName": "Function Execution Count", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + }, + { + "name": "Microsoft.Web/sites/slots/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for Web App Slot", + "operation": "Read Web App Slot metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of Web App Slot" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "CpuTime", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Time", + "displayName": "CPU Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "Requests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Requests", + "displayName": "Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "Http101", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 101", + "displayName": "Http 101", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http2xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 2xx", + "displayName": "Http 2xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http3xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 3xx", + "displayName": "Http 3xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http401", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 401", + "displayName": "Http 401", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http403", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 403", + "displayName": "Http 403", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http404", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 404", + "displayName": "Http 404", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http406", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 406", + "displayName": "Http 406", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http4xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 4xx", + "displayName": "Http 4xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http5xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Server Errors", + "displayName": "Http Server Errors", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "MemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory working set", + "displayName": "Memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageMemoryWorkingSet", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average memory working set", + "displayName": "Average memory working set", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "AverageResponseTime", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average Response Time", + "displayName": "Average Response Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "^(?!functionapp).*$", + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "FunctionExecutionUnits", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Units", + "displayName": "Function Execution Units", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "FunctionExecutionCount", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Function Execution Count", + "displayName": "Function Execution Count", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "metricFilterPattern": "(?i:functionapp)", + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + }, + { + "name": "Microsoft.Web/hostingEnvironments/multiRolePools/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for App Service Environment MultiRole", + "operation": "Read App Service Environment MultiRole metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of App Service Environment MultiRole" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "Requests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Requests", + "displayName": "Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "BytesReceived", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data In", + "displayName": "Data In", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "BytesSent", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Data Out", + "displayName": "Data Out", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Bytes" + }, + { + "name": "Http101", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 101", + "displayName": "Http 101", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http2xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 2xx", + "displayName": "Http 2xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http3xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 3xx", + "displayName": "Http 3xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http401", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 401", + "displayName": "Http 401", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http403", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 403", + "displayName": "Http 403", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http404", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 404", + "displayName": "Http 404", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http406", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 406", + "displayName": "Http 406", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http4xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http 4xx", + "displayName": "Http 4xx", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "Http5xx", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Server Errors", + "displayName": "Http Server Errors", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "AverageResponseTime", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Average Response Time", + "displayName": "Average Response Time", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Seconds" + }, + { + "name": "CpuPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "CPU Percentage", + "displayName": "CPU Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "MemoryPercentage", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Memory Percentage", + "displayName": "Memory Percentage", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Percent" + }, + { + "name": "DiskQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Disk Queue Length", + "displayName": "Disk Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "HttpQueueLength", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Http Queue Length", + "displayName": "Http Queue Length", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "ActiveRequests", + "aggregationType": "Total", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "dimensions": [ + { + "name": "Instance", + "displayName": "Instance", + "internalName": "ServerName", + "toBeExportedForShoebox": true + } + ], + "displayDescription": "Active Requests", + "displayName": "Active Requests", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "TotalFrontEnds", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Total Front Ends", + "displayName": "Total Front Ends", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "SmallAppServicePlanInstances", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Small App Service Plan Workers", + "displayName": "Small App Service Plan Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "MediumAppServicePlanInstances", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Medium App Service Plan Workers", + "displayName": "Medium App Service Plan Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "LargeAppServicePlanInstances", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Large App Service Plan Workers", + "displayName": "Large App Service Plan Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + }, + { + "name": "Microsoft.Web/hostingEnvironments/workerPools/providers/Microsoft.Insights/metricDefinitions/Read", + "display": { + "description": "Gets the available metrics for App Service Environment WorkerPool", + "operation": "Read App Service Environment WorkerPool metric definitions", + "provider": "Microsoft.Web", + "resource": "The metric definition of App Service Environment WorkerPool" + }, + "origin": "system", + "properties": { + "serviceSpecification": { + "metricSpecifications": [ + { + "name": "WorkersTotal", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Total Workers", + "displayName": "Total Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "WorkersAvailable", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Available Workers", + "displayName": "Available Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + }, + { + "name": "WorkersUsed", + "aggregationType": "Average", + "availabilities": [ + { + "blobDuration": "P2D", + "timeGrain": "PT1M" + }, + { + "blobDuration": "P30D", + "timeGrain": "PT1H" + }, + { + "blobDuration": "P90D", + "timeGrain": "P1D" + } + ], + "displayDescription": "Used Workers", + "displayName": "Used Workers", + "enableRegionalMdmAccount": false, + "fillGapWithZero": true, + "isInternal": false, + "supportsInstanceLevelAggregation": false, + "unit": "Count" + } + ] + } + } + } + ] + }, + "headers": {} + } + }, + "operationId": "Provider_ListOperations", + "title": "List operations" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json new file mode 100644 index 000000000000..6e3d6f453964 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "testsite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "ftp", + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + { + "name": "scm", + "type": "Microsoft.Web/sites/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/basicPublishingCredentialsPolicies/scm", + "properties": { + "allow": true + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBasicPublishingCredentialsPolicies", + "title": "List Publishing Credentials Policies" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json new file mode 100644 index 000000000000..63b17d49ca69 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json @@ -0,0 +1,36 @@ +{ + "parameters": { + "name": "testsite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "ftp", + "type": "Microsoft.Web/sites/slots/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/slots/staging/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + { + "name": "scm", + "type": "Microsoft.Web/sites/slots/basicPublishingCredentialsPolicies", + "id": "/subscriptions/3fb8d758-2e2c-42e9-a528-a8acdfe87237/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/slots/staging/basicPublishingCredentialsPolicies/scm", + "properties": { + "allow": true + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBasicPublishingCredentialsPoliciesSlot", + "title": "List Publishing Credentials Policies" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json new file mode 100644 index 000000000000..357a6f61256e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "Default-Web-NorthCentralUS", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_ListByResourceGroup", + "title": "List ResourceHealthMetadata for a resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json new file mode 100644 index 000000000000..86527f6ee0b4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-03-01-preview", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_ListBySite", + "title": "List ResourceHealthMetadata for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json new file mode 100644 index 000000000000..96baac08b12a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "newsiteinnewASE-NCUS", + "api-version": "2026-03-01-preview", + "resourceGroupName": "Default-Web-NorthCentralUS", + "slot": "Production", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_ListBySiteSlot", + "title": "List ResourceHealthMetadata for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json new file mode 100644 index 000000000000..7d020af287c5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "type": "Microsoft.Web/sites/resourceHealthMetadata", + "id": "/subscriptions/4adb32ad-8327-4cbb-b775-b84b4465bb38/resourceGroups/Default-Web-NorthCentralUS/providers/Microsoft.Web/sites/newsiteinnewASE-NCUS/resourceHealthMetadata/default", + "properties": { + "category": "Shared", + "signalAvailability": true + } + } + ] + } + } + }, + "operationId": "ResourceHealthMetadata_List", + "title": "List ResourceHealthMetadata for a subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json new file mode 100644 index 000000000000..f45256f7a520 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "tests346/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging", + "properties": { + "blobName": "blob1", + "status": "InProgress", + "storageAccountUrl": "https://blobstorage.windows.net" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListSiteBackupsSlot", + "title": "List backups" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json new file mode 100644 index 000000000000..4c5a89e6852e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json @@ -0,0 +1,53 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_List", + "title": "List Certificates by resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json new file mode 100644 index 000000000000..648bb181c48d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json @@ -0,0 +1,54 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + { + "name": "testc4912", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc4912", + "location": "West US", + "properties": { + "expirationDate": "2040-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert2" + ], + "issueDate": "2015-12-12T23:40:25+00:00", + "issuer": "CACert", + "subjectName": "ServerCert2", + "thumbprint": "FE703D7411A44163B6D32B3AD9B0490D5886EBFE" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_ListSlot", + "title": "List Certificates by resource group for a slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json new file mode 100644 index 000000000000..1913ad42d187 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListProductionSiteDeploymentStatuses", + "title": "List Deployment Status" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json new file mode 100644 index 000000000000..7a236b91656e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListSlotSiteDeploymentStatusesSlot", + "title": "List Deployment Status Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json new file mode 100644 index 000000000000..93ee32d3e8e2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "tests346", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "tests346/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/tests346/slot/staging", + "properties": { + "blobName": "blob1", + "status": "InProgress", + "storageAccountUrl": "https://blobstorage.windows.net" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListSiteBackups", + "title": "List backups" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json new file mode 100644 index 000000000000..590ab91d4c26 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/appSettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteAppSettings", + "title": "Get app settings of a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json new file mode 100644 index 000000000000..fd0474c29010 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "default", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/basicAuth/default", + "properties": { + "applicableEnvironmentsMode": "AllEnvironments", + "environments": null, + "secretState": "Password", + "secretUrl": null + } + } + ] + } + } + }, + "operationId": "StaticSites_ListBasicAuth", + "title": "Lists the basic auth properties for a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json new file mode 100644 index 000000000000..c3f63d2f691a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteBuildAppSettings", + "title": "Get app settings of a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json new file mode 100644 index 000000000000..22f9a4196958 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/12/config/appSettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteBuildFunctionAppSettings", + "title": "Get function app settings of a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json new file mode 100644 index 000000000000..7f421309b684 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/functions/GetList", + "properties": { + "functionName": "GetList", + "triggerType": "HttpTrigger" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteBuildFunctions", + "title": "Gets the functions of a particular static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json new file mode 100644 index 000000000000..c62ac83f319a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": [ + "authenticated", + "anonymous", + "customRole1" + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteConfiguredRoles", + "title": "Lists the configured roles for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json new file mode 100644 index 000000000000..9cf19359dae5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/config/appsettings", + "properties": { + "setting0": "someVal" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteFunctionAppSettings", + "title": "Get function app settings of a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json new file mode 100644 index 000000000000..a25a5c6668e8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/functions/GetList", + "properties": { + "functionName": "GetList", + "triggerType": "HttpTrigger" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteFunctions", + "title": "Gets the functions of a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json new file mode 100644 index 000000000000..21ea987897bb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "properties": { + "dnsOwnershipKey": "ownershipKey123123" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteSecrets", + "title": "List secrets for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json new file mode 100644 index 000000000000..943ac950d04b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "authprovider": "all", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/authproviders/all/users/1234", + "properties": { + "displayName": "username", + "provider": "aad", + "roles": "admin,anonymous,authenticated", + "userId": "1234" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "StaticSites_ListStaticSiteUsers", + "title": "List users for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json new file mode 100644 index 000000000000..a3da819c91a7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/backups/12345", + "properties": { + "name": "sitef6141_2024-11-01", + "blobName": "sitef6141_2024-11-01", + "created": "2022-09-03T17:33:11.641Z", + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "finishedTimeStamp": "2022-09-05T17:33:11.641Z", + "id": 12345, + "lastRestoreTimeStamp": "2022-09-04T17:33:11.641Z", + "log": "Succeeded", + "scheduled": true, + "sizeInBytes": 56091883, + "status": "InProgress", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=", + "websiteSizeInBytes": 56091883 + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListBackups", + "title": "List web app backups" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json new file mode 100644 index 000000000000..46373bad0ca7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json @@ -0,0 +1,76 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListConfigurations", + "title": "List web app configurations" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json new file mode 100644 index 000000000000..fdf7b773c076 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json @@ -0,0 +1,245 @@ +{ + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "api-version": "2026-03-01-preview" + }, + "responses": { + "200": { + "headers": {}, + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "kind": "app", + "location": "East US", + "properties": { + "state": "Running", + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "repositorySiteName": "sitef6141", + "usageState": "Normal", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "availabilityState": "Normal", + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Standard" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Repository" + } + ], + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "reserved": false, + "isXenon": false, + "hyperV": false, + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "backupRestoreTraffic": false, + "managedIdentityTraffic": false + }, + "siteConfig": { + "numberOfWorkers": 1, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "netFrameworkVersion": "v4.0", + "phpVersion": "5.6", + "pythonVersion": "", + "nodeVersion": "", + "powerShellVersion": "", + "linuxFxVersion": "", + "requestTracingEnabled": false, + "remoteDebuggingEnabled": false, + "httpLoggingEnabled": false, + "acrUseManagedIdentityCreds": false, + "logsDirectorySizeLimit": 35, + "detailedErrorLoggingEnabled": false, + "use32BitWorkerProcess": true, + "webSocketsEnabled": false, + "alwaysOn": false, + "appCommandLine": "", + "managedPipelineMode": "Integrated", + "virtualApplications": [ + { + "virtualPath": "/", + "physicalPath": "site\\wwwroot", + "preloadEnabled": false + } + ], + "loadBalancing": "LeastRequests", + "autoHealEnabled": false, + "vnetName": "", + "vnetRouteAllEnabled": false, + "vnetPrivatePortsCount": 0, + "http20Enabled": false, + "minTlsVersion": "1.2", + "scmMinTlsVersion": "1.2", + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "minimumElasticInstanceCount": 0, + "azureStorageAccounts": {} + }, + "scmSiteAlsoStopped": false, + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "hostNamesDisabled": false, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "containerSize": 0, + "dailyMemoryTimeQuota": 0, + "resourceGroup": "testrg123", + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "httpsOnly": false, + "redundancyMode": "None", + "storageAccountRequired": false, + "keyVaultReferenceIdentity": "SystemAssigned" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/qa", + "name": "sitef6141/qa", + "type": "Microsoft.Web/sites/slots", + "kind": "app", + "location": "East US", + "properties": { + "state": "Running", + "hostNames": [ + "sitef6141-qa.azurewebsites.net" + ], + "repositorySiteName": "sitef6141", + "usageState": "Normal", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "availabilityState": "Normal", + "hostNameSslStates": [ + { + "name": "sitef6141-qa.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Standard" + }, + { + "name": "sitef6141-qa.scm.azurewebsites.net", + "sslState": "Disabled", + "hostType": "Repository" + } + ], + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "reserved": false, + "isXenon": false, + "hyperV": false, + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "backupRestoreTraffic": false, + "managedIdentityTraffic": false + }, + "siteConfig": { + "numberOfWorkers": 1, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "netFrameworkVersion": "v4.0", + "phpVersion": "5.6", + "pythonVersion": "", + "nodeVersion": "", + "powerShellVersion": "", + "linuxFxVersion": "", + "requestTracingEnabled": false, + "remoteDebuggingEnabled": false, + "httpLoggingEnabled": false, + "acrUseManagedIdentityCreds": false, + "logsDirectorySizeLimit": 35, + "detailedErrorLoggingEnabled": false, + "use32BitWorkerProcess": true, + "webSocketsEnabled": false, + "alwaysOn": false, + "appCommandLine": "", + "managedPipelineMode": "Integrated", + "virtualApplications": [ + { + "virtualPath": "/", + "physicalPath": "site\\wwwroot", + "preloadEnabled": false + } + ], + "loadBalancing": "LeastRequests", + "autoHealEnabled": false, + "vnetName": "", + "vnetRouteAllEnabled": false, + "vnetPrivatePortsCount": 0, + "http20Enabled": false, + "minTlsVersion": "1.2", + "scmMinTlsVersion": "1.2", + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "minimumElasticInstanceCount": 0, + "azureStorageAccounts": {} + }, + "scmSiteAlsoStopped": false, + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "hostNamesDisabled": false, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "containerSize": 0, + "dailyMemoryTimeQuota": 0, + "resourceGroup": "testrg123", + "defaultHostName": "sitef6141-qa.azurewebsites.net", + "httpsOnly": false, + "redundancyMode": "None", + "storageAccountRequired": false, + "keyVaultReferenceIdentity": "SystemAssigned" + } + } + ] + } + } + }, + "operationId": "WebApps_ListSlots", + "title": "List Web App Slots" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json new file mode 100644 index 000000000000..6033df8c8bd2 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json @@ -0,0 +1,253 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + { + "name": "sitef7252", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef7252", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef7252.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef7252.azurewebsites.net", + "sitef7252.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef7252.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef7252.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef7252.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef7252", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_List", + "title": "List Web apps for subscription" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json new file mode 100644 index 000000000000..443b28e3e364 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json @@ -0,0 +1,254 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + { + "name": "sitef7252", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef7252", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef7252.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef7252.azurewebsites.net", + "sitef7252.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef7252.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef7252.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef7252.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef7252", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListByResourceGroup", + "title": "List Web Apps by Resource group" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json new file mode 100644 index 000000000000..31205eb6cee5 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testsite2/a1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/a1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + { + "name": "testsite2/stateful2", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/testsub/resourceGroups/testrg/providers/Microsoft.Web/sites/testsite2/workflows/stateful2", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "error": { + "code": "InvalidWorkflowJson", + "message": "Invalid character after parsing property name. Expected ':' but got: \". Path '', line 2, position 2." + }, + "state": "Unhealthy" + } + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListWorkflows", + "title": "List the workflows" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json new file mode 100644 index 000000000000..aa2a17e3bd83 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "configurationName": "connections", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/connections", + "type": "Microsoft.Web/sites/workflowsconfiguration", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflowconfigurations/connections", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "string" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "string" + }, + "connectionRuntimeUrl": "string" + } + } + } + }, + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListWorkflowsConnections", + "title": "List the Instance Workflows Configuration Connections" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json new file mode 100644 index 000000000000..f49223d2856b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "configurationName": "connections", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsite2/connections", + "type": "Microsoft.Web/sites/workflowsconfiguration", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflowconfigurations/connections", + "location": "USAAnywhere", + "properties": { + "files": { + "connections.json": { + "managedApiConnections": { + "office365": { + "api": { + "id": "string" + }, + "authentication": { + "type": "Raw", + "parameter": "@appsetting('office365-connectionKey')", + "scheme": "Key" + }, + "connection": { + "id": "string" + }, + "connectionRuntimeUrl": "string" + } + } + } + }, + "health": { + "state": "Healthy" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_ListWorkflowsConnectionsSlot", + "title": "List the Instance Workflows Configuration Connections Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json new file mode 100644 index 000000000000..c9a10f3ec32b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "nextLink": null, + "value": [ + { + "name": "testsite2/a1", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite2/workflows/a1", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "state": "Healthy" + } + } + }, + { + "name": "testsite2/stateful2", + "type": "Microsoft.Web/sites/workflows", + "id": "/subscriptions/testsub/resourceGroups/testrg/providers/Microsoft.Web/sites/testsite2/workflows/stateful2", + "kind": "Stateful", + "location": "USAAnywhere", + "properties": { + "flowState": "Enabled", + "health": { + "error": { + "code": "InvalidWorkflowJson", + "message": "Invalid character after parsing property name. Expected ':' but got: \". Path '', line 2, position 2." + }, + "state": "Unhealthy" + } + } + } + ] + }, + "headers": {} + } + }, + "operationId": "WebApps_ListInstanceWorkflowsSlot", + "title": "List the workflows Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json similarity index 61% rename from specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json index 0db44fb4b697..e96cb5f8587b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json @@ -1,8 +1,10 @@ { + "operationId": "ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig", + "title": "Create or update the managed traffic configuration for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", - "name": "testsite", + "name": "sitef6141", "configName": "default", "api-version": "2026-06-01-preview", "resource": { @@ -10,14 +12,16 @@ "trafficMode": "Active", "endpoints": [ { - "region": "westus", + "region": "eastus", "priority": 1, - "weight": 700 + "weight": 700, + "isWeightAutoComputed": false }, { - "region": "eastus", - "priority": 1, - "weight": 300 + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false } ] } @@ -26,28 +30,28 @@ "responses": { "200": { "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/managedTrafficConfig/default", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/managedTrafficConfig/default", "name": "default", "type": "Microsoft.Web/sites/managedTrafficConfig", "properties": { "trafficMode": "Active", "endpoints": [ { - "region": "westus", + "region": "eastus", "priority": 1, - "weight": 700 + "weight": 700, + "isWeightAutoComputed": false }, { - "region": "eastus", - "priority": 1, - "weight": 300 + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false } ], "provisioningState": "Succeeded" } } } - }, - "operationId": "ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig", - "title": "Create or update managed traffic configuration" + } } diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_GetManagedTrafficConfig.json similarity index 64% rename from specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_GetManagedTrafficConfig.json index be545066aea9..c7b46138c021 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_GetManagedTrafficConfig.json @@ -1,36 +1,38 @@ { + "operationId": "ManagedTrafficConfigs_GetManagedTrafficConfig", + "title": "Get the managed traffic configuration for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", - "name": "testsite", + "name": "sitef6141", "configName": "default", "api-version": "2026-06-01-preview" }, "responses": { "200": { "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/managedTrafficConfig/default", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/managedTrafficConfig/default", "name": "default", "type": "Microsoft.Web/sites/managedTrafficConfig", "properties": { "trafficMode": "Active", "endpoints": [ { - "region": "westus", + "region": "eastus", "priority": 1, - "weight": 500 + "weight": 700, + "isWeightAutoComputed": false }, { - "region": "eastus", - "priority": 1, - "weight": 500 + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false } ], "provisioningState": "Succeeded" } } } - }, - "operationId": "ManagedTrafficConfigs_GetManagedTrafficConfig", - "title": "Get managed traffic configuration" + } } diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json new file mode 100644 index 000000000000..41ff38517ef0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json @@ -0,0 +1,74 @@ +{ + "parameters": { + "name": "testsf6141", + "api-version": "2026-03-01-preview", + "appServicePlan": { + "kind": "app", + "properties": {} + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testsf6141", + "type": "Microsoft.Web/serverfarms", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", + "kind": "app", + "location": "East US", + "properties": { + "geoRegion": "East US", + "isSpot": false, + "maximumNumberOfWorkers": 20, + "numberOfSites": 4, + "provisioningState": "Succeeded", + "reserved": false, + "status": "Ready", + "targetWorkerCount": 0, + "targetWorkerSizeId": 0 + }, + "sku": { + "name": "P1", + "capacity": 1, + "family": "P", + "size": "P1", + "tier": "Premium" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/operationresults/F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0" + } + } + }, + "operationId": "AppServicePlans_Update", + "title": "Patch Service plan" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json new file mode 100644 index 000000000000..e77ae0c2caf0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json @@ -0,0 +1,38 @@ +{ + "parameters": { + "name": "testc6282", + "api-version": "2026-03-01-preview", + "certificateEnvelope": { + "properties": { + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "Certificates_Update", + "title": "Patch Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json new file mode 100644 index 000000000000..8749a95a160d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json @@ -0,0 +1,39 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateEnvelope": { + "properties": { + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_Update", + "title": "Patch Certificate" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json new file mode 100644 index 000000000000..5eb51ccddb14 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "testSiteName", + "api-version": "2026-03-01-preview", + "certificateEnvelope": { + "properties": { + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" + } + }, + "certificateName": "testc6282", + "resourceGroupName": "testrg123", + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testc6282", + "type": "Microsoft.Web/sites/certificates", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testSiteName/slots/staging/certificates/testc6282", + "location": "East US", + "properties": { + "expirationDate": "2039-12-31T23:59:59+00:00", + "friendlyName": "", + "hostNames": [ + "ServerCert" + ], + "issueDate": "2015-11-12T23:40:25+00:00", + "issuer": "CACert", + "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV", + "subjectName": "ServerCert", + "thumbprint": "FE703D7411A44163B6D32B3AD9B03E175886EBFE" + } + }, + "headers": {} + } + }, + "operationId": "SiteCertificates_UpdateSlot", + "title": "Patch Certificate for slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json new file mode 100644 index 000000000000..3fa316aef33d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json @@ -0,0 +1,67 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "staticSiteEnvelope": { + "properties": {} + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": [] + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testStaticSite0", + "type": "Microsoft.Web/staticSites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0", + "location": "West US 2", + "properties": { + "allowConfigFileUpdates": true, + "branch": "demo", + "contentDistributionEndpoint": "", + "customDomains": [], + "defaultHostname": "happy-sea-15afae3e.azurestaticwebsites.net", + "keyVaultReferenceIdentity": "SystemAssigned", + "privateEndpointConnections": [], + "repositoryUrl": "https://github.com/username/RepoName", + "stagingEnvironmentPolicy": "Enabled", + "userProvidedFunctionApps": [] + }, + "sku": { + "name": "Basic", + "tier": "Basic" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_UpdateStaticSite", + "title": "Patch a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json new file mode 100644 index 000000000000..05bf4b9bf318 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": {} + }, + "environmentName": "default", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/builds/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_UpdateBuildDatabaseConnection", + "title": "Patch a database connection for a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json new file mode 100644 index 000000000000..85948117181f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json @@ -0,0 +1,29 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "databaseConnectionName": "default", + "databaseConnectionRequestEnvelope": { + "properties": {} + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "default", + "type": "Microsoft.Web/staticSites/databaseConnections", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/databaseConnections/default", + "properties": { + "connectionIdentity": "SystemAssigned", + "region": "West US 2", + "resourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/databaseRG/providers/Microsoft.DocumentDB/databaseAccounts/exampleDatabaseName" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_UpdateDatabaseConnection", + "title": "Patch a database connection for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json new file mode 100644 index 000000000000..6bfe8dbf72f9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json @@ -0,0 +1,59 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowArtifacts": { + "appSettings": { + "eventHub_connectionString": "Endpoint=sb://example.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=EXAMPLE1a2b3c4d5e6fEXAMPLE=" + }, + "files": { + "connections.json": { + "managedApiConnections": {}, + "serviceProviderConnections": { + "eventHub": { + "displayName": "example1", + "parameterValues": { + "connectionString": "@appsetting('eventHub_connectionString')" + }, + "serviceProvider": { + "id": "/serviceProviders/eventHub" + } + } + } + }, + "test1/workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "triggers": { + "When_events_are_available_in_Event_hub": { + "type": "ServiceProvider", + "inputs": { + "parameters": { + "eventHubName": "test123" + }, + "serviceProviderConfiguration": { + "operationId": "receiveEvents", + "connectionName": "eventHub", + "serviceProviderId": "/serviceProviders/eventHub" + } + }, + "splitOn": "@triggerOutputs()?['body']" + } + } + }, + "kind": "Stateful" + } + } + } + }, + "responses": { + "200": {} + }, + "operationId": "WebApps_DeployWorkflowArtifacts", + "title": "Deploys workflow artifacts" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json new file mode 100644 index 000000000000..1d5ce85f7b20 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json @@ -0,0 +1,60 @@ +{ + "parameters": { + "name": "testsite2", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "testsSlot", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowArtifacts": { + "appSettings": { + "eventHub_connectionString": "Endpoint=sb://example.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=EXAMPLE1a2b3c4d5e6fEXAMPLE=" + }, + "files": { + "connections.json": { + "managedApiConnections": {}, + "serviceProviderConnections": { + "eventHub": { + "displayName": "example1", + "parameterValues": { + "connectionString": "@appsetting('eventHub_connectionString')" + }, + "serviceProvider": { + "id": "/serviceProviders/eventHub" + } + } + } + }, + "test1/workflow.json": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "triggers": { + "When_events_are_available_in_Event_hub": { + "type": "ServiceProvider", + "inputs": { + "parameters": { + "eventHubName": "test123" + }, + "serviceProviderConfiguration": { + "operationId": "receiveEvents", + "connectionName": "eventHub", + "serviceProviderId": "/serviceProviders/eventHub" + } + }, + "splitOn": "@triggerOutputs()?['body']" + } + } + }, + "kind": "Stateful" + } + } + } + }, + "responses": { + "200": {} + }, + "operationId": "WebApps_DeployWorkflowArtifactsSlot", + "title": "Deploys workflow artifacts slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json new file mode 100644 index 000000000000..c94ed7f2367c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "functionAppName": "testFunctionApp", + "isForced": "true", + "resourceGroupName": "rg", + "staticSiteUserProvidedFunctionEnvelope": { + "properties": { + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_RegisterUserProvidedFunctionAppWithStaticSite", + "title": "Register a user provided function app with a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json new file mode 100644 index 000000000000..339f4e781c73 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json @@ -0,0 +1,49 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "functionAppName": "testFunctionApp", + "isForced": "true", + "resourceGroupName": "rg", + "staticSiteUserProvidedFunctionEnvelope": { + "properties": { + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "testFunctionApp", + "type": "Microsoft.Web/staticSites/builds/userProvidedFunctionApps", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/userProvidedFunctionApps/testFunctionApp", + "properties": { + "createdOn": "2020-03-04T17:33:11.641Z", + "functionAppRegion": "West US 2", + "functionAppResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/functionRG/providers/Microsoft.Web/sites/testFunctionApp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_RegisterUserProvidedFunctionAppWithStaticSiteBuild", + "title": "Register a user provided function app with a static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json new file mode 100644 index 000000000000..65d6558423b3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resetPropertiesEnvelope": { + "properties": { + "repositoryToken": "repoToken123", + "shouldUpdateRepository": true + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {} + }, + "operationId": "StaticSites_ResetStaticSiteApiKey", + "title": "Reset the api key for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json new file mode 100644 index 000000000000..068e874b887b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "backupId": "123244", + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "request": { + "properties": { + "databases": [ + { + "name": "backenddb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "backend", + "databaseType": "SqlAzure" + }, + { + "name": "statsdb", + "connectionString": "DSN=data-source-name[;SERVER=value] [;PWD=value] [;UID=value] [;=]", + "connectionStringName": "stats", + "databaseType": "SqlAzure" + } + ], + "overwrite": true, + "siteName": "sitef6141", + "storageAccountUrl": "DefaultEndpointsProtocol=https;AccountName=storagesample;AccountKey=" + } + } + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_Restore", + "title": "Restore web app from backup" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json similarity index 64% rename from specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json index b445ab518941..b3237ce6f896 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json @@ -1,16 +1,18 @@ { + "operationId": "ServerFarmSilos_CreateOrUpdateServerFarmSilo", + "title": "Create or update an App Service plan silo", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", "name": "testsf6141", - "siloName": "eastus-silo", + "siloName": "silo-eastus", "api-version": "2026-06-01-preview", "resource": { "location": "East US", "properties": { - "siloLocation": "eastus", + "siloLocation": "East US", "primaryServerFarmName": "testsf6141", - "primaryLocation": "westus", + "primaryLocation": "West US", "instanceNumberOverride": 3, "zoneRedundantOverride": true } @@ -19,37 +21,39 @@ "responses": { "200": { "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", - "name": "eastus-silo", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", "type": "Microsoft.Web/serverfarms/silos", "location": "East US", "properties": { - "siloLocation": "eastus", + "siloLocation": "East US", "primaryServerFarmName": "testsf6141", - "primaryLocation": "westus", + "primaryLocation": "West US", "instanceNumberOverride": 3, "zoneRedundantOverride": true, - "provisioningState": "Succeeded" + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" } } }, "201": { "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", - "name": "eastus-silo", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", "type": "Microsoft.Web/serverfarms/silos", "location": "East US", "properties": { - "siloLocation": "eastus", + "siloLocation": "East US", "primaryServerFarmName": "testsf6141", - "primaryLocation": "westus", + "primaryLocation": "West US", "instanceNumberOverride": 3, "zoneRedundantOverride": true, - "provisioningState": "InProgress" + "provisioningState": "InProgress", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T10:00:00Z" } } } - }, - "operationId": "ServerFarmSilos_CreateOrUpdateServerFarmSilo", - "title": "Create or update App Service plan silo" + } } diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_DeleteServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_DeleteServerFarmSilo.json new file mode 100644 index 000000000000..3f401124f34f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_DeleteServerFarmSilo.json @@ -0,0 +1,19 @@ +{ + "operationId": "ServerFarmSilos_DeleteServerFarmSilo", + "title": "Delete an App Service plan silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus/operationresults/00000000-0000-0000-0000-000000000000?api-version=2026-06-01-preview" + } + }, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_GetServerFarmSilo.json similarity index 56% rename from specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_GetServerFarmSilo.json index b42442238d6d..297ee06d59d1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_GetServerFarmSilo.json @@ -1,27 +1,31 @@ { + "operationId": "ServerFarmSilos_GetServerFarmSilo", + "title": "Get a specific silo for an App Service plan", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", "name": "testsf6141", - "siloName": "eastus-silo", + "siloName": "silo-eastus", "api-version": "2026-06-01-preview" }, "responses": { "200": { "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", - "name": "eastus-silo", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", "type": "Microsoft.Web/serverfarms/silos", "location": "East US", "properties": { - "siloLocation": "eastus", + "siloLocation": "East US", "primaryServerFarmName": "testsf6141", - "primaryLocation": "westus", - "provisioningState": "Succeeded" + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" } } } - }, - "operationId": "ServerFarmSilos_GetServerFarmSilo", - "title": "Get App Service plan silo" + } } diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_ListServerFarmSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_ListServerFarmSilos.json new file mode 100644 index 000000000000..a139ca215a85 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_ListServerFarmSilos.json @@ -0,0 +1,50 @@ +{ + "operationId": "ServerFarmSilos_ListServerFarmSilos", + "title": "Get all silos for an App Service plan", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-westus", + "name": "silo-westus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "West US", + "properties": { + "siloLocation": "West US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 2, + "zoneRedundantOverride": false, + "provisioningState": "Succeeded", + "createdTime": "2026-01-10T08:00:00Z", + "lastModifiedTime": "2026-01-10T09:00:00Z" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdateSiteSilo.json similarity index 53% rename from specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdateSiteSilo.json index a0e0d0a2dc68..1a194d223121 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdateSiteSilo.json @@ -1,85 +1,97 @@ { + "operationId": "SiteSilos_CreateOrUpdateSiteSilo", + "title": "Create or update a web app silo", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", - "name": "testsite", - "siloName": "eastus-silo", + "name": "sitef6141", + "siloName": "silo-eastus", "api-version": "2026-06-01-preview", "resource": { "location": "East US", "properties": { - "siloLocation": "eastus", - "primarySiteName": "testsite", - "primaryLocation": "westus", - "trafficMode": "Active", + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", "endpointStatus": "Enabled", - "followLkg": true, + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, "appSettingsOverrides": [ { - "name": "SETTING1", - "value": "overrideValue1" + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" } ], - "networkingOverride": { - "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" - } + "followLkg": true } } }, "responses": { "200": { "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", - "name": "eastus-silo", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", "type": "Microsoft.Web/sites/silos", "location": "East US", "properties": { - "siloLocation": "eastus", - "primarySiteName": "testsite", - "primaryLocation": "westus", - "trafficMode": "Active", + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", "endpointStatus": "Enabled", - "followLkg": true, + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, "appSettingsOverrides": [ { - "name": "SETTING1", - "value": "overrideValue1" + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" } ], - "networkingOverride": { - "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" - }, - "provisioningState": "Succeeded" + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" } } }, "201": { "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", - "name": "eastus-silo", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", "type": "Microsoft.Web/sites/silos", "location": "East US", "properties": { - "siloLocation": "eastus", - "primarySiteName": "testsite", - "primaryLocation": "westus", - "trafficMode": "Active", + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", "endpointStatus": "Enabled", - "followLkg": true, + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, "appSettingsOverrides": [ { - "name": "SETTING1", - "value": "overrideValue1" + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" } ], - "networkingOverride": { - "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" - }, - "provisioningState": "InProgress" + "followLkg": true, + "provisioningState": "InProgress", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "CheckingEndpoint", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T10:00:00Z" } } } - }, - "operationId": "SiteSilos_CreateOrUpdateSiteSilo", - "title": "Create or update site silo" + } } diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_DeleteSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_DeleteSiteSilo.json new file mode 100644 index 000000000000..07ba72b78847 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_DeleteSiteSilo.json @@ -0,0 +1,19 @@ +{ + "operationId": "SiteSilos_DeleteSiteSilo", + "title": "Delete a web app silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus/operationresults/00000000-0000-0000-0000-000000000000?api-version=2026-06-01-preview" + } + }, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_GetSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_GetSiteSilo.json new file mode 100644 index 000000000000..e82ae93d3db0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_GetSiteSilo.json @@ -0,0 +1,45 @@ +{ + "operationId": "SiteSilos_GetSiteSilo", + "title": "Get a specific silo for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_ListSiteSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_ListSiteSilos.json new file mode 100644 index 000000000000..4ecb64e0ad65 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_ListSiteSilos.json @@ -0,0 +1,60 @@ +{ + "operationId": "SiteSilos_ListSiteSilos", + "title": "Get all silos for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-westeurope", + "name": "silo-westeurope", + "type": "Microsoft.Web/sites/silos", + "location": "West Europe", + "properties": { + "siloLocation": "West Europe", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "followLkg": false, + "provisioningState": "Succeeded", + "revisionId": "rev-002", + "defaultHostName": "sitef6141-silo-westeurope.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-10T08:00:00Z", + "lastModifiedTime": "2026-01-10T09:00:00Z" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json new file mode 100644 index 000000000000..d08027b16512 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartWebSiteNetworkTraceOperation", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json new file mode 100644 index 000000000000..fbd8aa61f9ee --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartWebSiteNetworkTraceOperationSlot", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json new file mode 100644 index 000000000000..0142c081a280 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartNetworkTrace", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json new file mode 100644 index 000000000000..e4a69871e4b9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json @@ -0,0 +1,37 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "durationInSeconds": 60, + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": {} + }, + "202": { + "body": [ + { + "path": "D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "message": "Trace file has been saved as D:\\home\\LogFiles\\networktrace\\10.0.0.1_2018_02_01T00_00_00.zip", + "status": "Succeeded" + } + ], + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d", + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/SampleApp/operationresults/c291433b-53ad-4c49-8cae-0a293eae1c6d" + } + } + }, + "operationId": "WebApps_StartNetworkTraceSlot", + "title": "Start a new network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json new file mode 100644 index 000000000000..63bdcd1ceb28 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "12", + "resourceGroupName": "rg", + "staticSiteZipDeploymentEnvelope": { + "properties": { + "apiZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/api-zipdeploy.zip", + "appZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/app-zipdeploy.zip", + "deploymentTitle": "Update index.html", + "functionLanguage": "testFunctionLanguage", + "provider": "testProvider" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateZipDeploymentForStaticSiteBuild", + "title": "Deploy a site from a zipped package to a particular static site build" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json new file mode 100644 index 000000000000..063d84a95da4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "staticSiteZipDeploymentEnvelope": { + "properties": { + "apiZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/api-zipdeploy.zip", + "appZipUrl": "https://[examplestorageaccount].com/happy-sea-15afae3e-master-81828877/app-zipdeploy.zip", + "deploymentTitle": "Update index.html", + "functionLanguage": "testFunctionLanguage", + "provider": "testProvider" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_CreateZipDeploymentForStaticSite", + "title": "Deploy a site from a zipped package" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json new file mode 100644 index 000000000000..112508c217d4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopWebSiteNetworkTrace", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json new file mode 100644 index 000000000000..2805fa6b5594 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopWebSiteNetworkTraceSlot", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json new file mode 100644 index 000000000000..51f520450cd8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopNetworkTrace", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json new file mode 100644 index 000000000000..f1f5e80b1cbf --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "SampleApp", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "slot": "Production", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "WebApps_StopNetworkTraceSlot", + "title": "Stop a currently running network trace operation for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json new file mode 100644 index 000000000000..65ba920f246a --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "cleanUpAuth": true, + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_UnlinkBackend", + "title": "Unlink a backend from a static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json new file mode 100644 index 000000000000..cdcf2b16173e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "cleanUpAuth": true, + "environmentName": "12", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "204": {} + }, + "operationId": "StaticSites_UnlinkBackendFromBuild", + "title": "Unlink a backend from a static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json new file mode 100644 index 000000000000..6931aefb0c76 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json @@ -0,0 +1,31 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "appSettings": { + "properties": { + "Setting1": "Value1", + "Setting2": "Value2" + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "appsettings", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/appsettings", + "kind": "app", + "properties": { + "Setting1": "Value1", + "Setting2": "Value2" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateApplicationSettings", + "title": "Update App Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json new file mode 100644 index 000000000000..4d6f9f2f76d4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "name": "test-ase", + "api-version": "2026-03-01-preview", + "customDnsSuffixConfiguration": { + "properties": { + "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", + "dnsSuffix": "contoso.com", + "keyVaultReferenceIdentity": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/test-rg/providers/microsoft.managedidentity/userassignedidentities/test-user-mi" + } + }, + "resourceGroupName": "test-rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "customDnsSuffix", + "type": "Microsoft.Web/hostingEnvironments/configurations/customdnssuffix", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web/hostingEnvironments/test-ase/configurations/customdnssuffix", + "properties": { + "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", + "dnsSuffix": "contoso.com", + "keyVaultReferenceIdentity": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/test-rg/providers/microsoft.managedidentity/userassignedidentities/test-user-mi", + "provisioningDetails": null, + "provisioningState": "Succeeded" + } + }, + "headers": {} + } + }, + "operationId": "AppServiceEnvironments_UpdateAseCustomDnsSuffixConfiguration", + "title": "Update ASE custom DNS suffix configuration" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json new file mode 100644 index 000000000000..4ba845970fbb --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json @@ -0,0 +1,49 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteAuthSettings": { + "properties": { + "allowedExternalRedirectUrls": [ + "sitef6141.customdomain.net", + "sitef6141.customdomain.info" + ], + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "defaultProvider": "Google", + "enabled": true, + "runtimeVersion": "~1", + "tokenRefreshExtensionHours": 120, + "tokenStoreEnabled": true, + "unauthenticatedClientAction": "RedirectToLoginPage" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettings", + "type": "Microsoft.Web/sites/authsettings", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettings", + "kind": "app", + "properties": { + "allowedExternalRedirectUrls": [ + "sitef6141.customdomain.net", + "sitef6141.customdomain.info" + ], + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "defaultProvider": "Google", + "enabled": true, + "runtimeVersion": "~1", + "tokenRefreshExtensionHours": 120, + "tokenStoreEnabled": true, + "unauthenticatedClientAction": "RedirectToLoginPage" + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateAuthSettings", + "title": "Update Auth Settings" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json new file mode 100644 index 000000000000..8c9f96f91b40 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json @@ -0,0 +1,157 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteAuthSettingsV2": { + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "authsettingsv2", + "type": "Microsoft.Web/sites/authsettingsv2", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/authsettingsv2", + "kind": "app", + "properties": { + "globalValidation": { + "excludedPaths": [ + "/nosecrets/Path" + ], + "requireAuthentication": true, + "unauthenticatedClientAction": "Return403" + }, + "httpSettings": { + "forwardProxy": { + "convention": "Standard", + "customHostHeaderName": "authHeader", + "customProtoHeaderName": "customProtoHeader" + }, + "requireHttps": true, + "routes": { + "apiPrefix": "/authv2/" + } + }, + "identityProviders": { + "google": { + "enabled": true, + "login": { + "scopes": [ + "admin" + ] + }, + "registration": { + "clientId": "42d795a9-8abb-4d06-8534-39528af40f8e.apps.googleusercontent.com", + "clientSecretSettingName": "ClientSecret" + }, + "validation": { + "allowedAudiences": [ + "https://example.com" + ] + } + } + }, + "login": { + "allowedExternalRedirectUrls": [ + "https://someurl.com" + ], + "cookieExpiration": { + "convention": "IdentityProviderDerived", + "timeToExpiration": "2022:09-01T00:00Z" + }, + "nonce": { + "validateNonce": true + }, + "preserveUrlFragmentsForLogins": true, + "routes": { + "logoutEndpoint": "https://app.com/logout" + }, + "tokenStore": { + "enabled": true, + "fileSystem": { + "directory": "/wwwroot/sites/example" + }, + "tokenRefreshExtensionHours": 96 + } + }, + "platform": { + "configFilePath": "/auth/config.json", + "enabled": true, + "runtimeVersion": "~1" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateAuthSettingsV2", + "title": "Update Auth Settings V2" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json new file mode 100644 index 000000000000..5947ea770da9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "azureStorageAccounts": { + "properties": { + "account1": { + "type": "AzureFiles", + "accessKey": "26515^%@#*", + "accountName": "testsa", + "mountPath": "/mounts/a/files", + "shareName": "web" + } + } + }, + "resourceGroupName": "testrg123", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "account1": { + "type": "AzureFiles", + "accountName": "testsa", + "mountPath": "/mounts/a/files", + "shareName": "web", + "state": "Ok" + } + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateAzureStorageAccounts", + "title": "Update Azure Storage Accounts" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json new file mode 100644 index 000000000000..221f9b79073b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json @@ -0,0 +1,16 @@ +{ + "parameters": { + "name": "contoso", + "api-version": "2026-03-01-preview", + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": {}, + "headers": {} + } + }, + "operationId": "WebApps_UpdateMachineKey", + "title": "Updates the machine key for a site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json new file mode 100644 index 000000000000..cacef8a4499c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateScmAllowed", + "title": "Update SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json new file mode 100644 index 000000000000..27d609eb77c6 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateScmAllowedSlot", + "title": "Update SCM Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json new file mode 100644 index 000000000000..7aae966734ab --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateFtpAllowedSlot", + "title": "Update FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json new file mode 100644 index 000000000000..2ce3b47739b8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "testSite", + "api-version": "2026-03-01-preview", + "csmPublishingAccessPoliciesEntity": { + "properties": { + "allow": true + } + }, + "resourceGroupName": "rg", + "slot": "stage", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/sites/testSite/slots/stage/basicPublishingCredentialsPolicies/ftp", + "properties": { + "allow": true + } + }, + "headers": {} + } + }, + "operationId": "WebApps_UpdateFtpAllowed", + "title": "Update FTP Allowed" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json new file mode 100644 index 000000000000..9eb890e4d12e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json @@ -0,0 +1,125 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteConfig": { + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "web", + "type": "Microsoft.Web/sites/config", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/config/web", + "kind": "app", + "properties": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + } + }, + "headers": {} + } + }, + "operationId": "WebApps_CreateOrUpdateConfiguration", + "title": "Update Site Config" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json new file mode 100644 index 000000000000..df2155526dfe --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json @@ -0,0 +1,30 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "authprovider": "aad", + "resourceGroupName": "rg", + "staticSiteUserEnvelope": { + "properties": { + "roles": "contributor" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "userid": "1234" + }, + "responses": { + "200": { + "body": { + "properties": { + "displayName": "username", + "provider": "aad", + "roles": "contributor,anonymous,authenticated", + "userId": "1234" + } + }, + "headers": {} + } + }, + "operationId": "StaticSites_UpdateStaticSiteUser", + "title": "Create or update a user for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json new file mode 100644 index 000000000000..d06fc8607ae8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json @@ -0,0 +1,261 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141", + "type": "Microsoft.Web/sites", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141.azurewebsites.net", + "sitef6141.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceConfig": { + "cpu": 1, + "memory": "2.0Gi" + }, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal", + "workloadProfileName": "myd4wp" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_Update", + "title": "Update web app" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json new file mode 100644 index 000000000000..9c0b4ebb4e8c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json @@ -0,0 +1,252 @@ +{ + "parameters": { + "name": "sitef6141", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testrg123", + "siteEnvelope": { + "properties": { + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp" + } + }, + "slot": "staging", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": {} + }, + "202": { + "body": { + "name": "sitef6141/staging", + "type": "Microsoft.Web/sites/slots", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/slots/staging", + "kind": "app", + "location": "East US", + "properties": { + "availabilityState": "Normal", + "clientAffinityEnabled": true, + "clientCertEnabled": false, + "clientCertMode": "Required", + "containerSize": 0, + "customDomainVerificationId": "7F3BB652450EF7AD0B6AA33064586E4A9CE823A46DF0B2EC6443A68086E84153", + "dailyMemoryTimeQuota": 0, + "defaultHostName": "sitef6141-staging.azurewebsites.net", + "enabled": true, + "enabledHostNames": [ + "sitef6141-staging.azurewebsites.net", + "sitef6141-staging.scm.azurewebsites.net" + ], + "hostNameSslStates": [ + { + "name": "sitef6141-staging.azurewebsites.net", + "hostType": "Standard", + "sslState": "Disabled" + }, + { + "name": "sitef6141-staging.scm.azurewebsites.net", + "hostType": "Repository", + "sslState": "Disabled" + } + ], + "hostNames": [ + "sitef6141-staging.azurewebsites.net" + ], + "hostNamesDisabled": false, + "httpsOnly": false, + "hyperV": false, + "isXenon": false, + "keyVaultReferenceIdentity": "SystemAssigned", + "lastModifiedTimeUtc": "2020-03-04T17:33:11.641Z", + "outboundIpAddresses": "70.37.102.201,20.225.43.144", + "outboundVnetRouting": { + "allTraffic": false, + "applicationTraffic": false, + "backupRestoreTraffic": false, + "contentShareTraffic": false, + "imagePullTraffic": false, + "managedIdentityTraffic": false + }, + "possibleOutboundIpAddresses": "70.37.102.201,20.225.43.144,20.225.184.122,20.225.184.188", + "redundancyMode": "None", + "repositorySiteName": "sitef6141", + "reserved": false, + "resourceGroup": "testrg123", + "scmSiteAlsoStopped": false, + "serverFarmId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/DefaultAsp", + "siteConfig": { + "acrUseManagedIdentityCreds": false, + "alwaysOn": false, + "appCommandLine": "", + "autoHealEnabled": false, + "azureStorageAccounts": {}, + "defaultDocuments": [ + "Default.htm", + "Default.html", + "Default.asp", + "index.htm", + "index.html", + "iisstart.htm", + "default.aspx", + "index.php", + "hostingstart.html" + ], + "detailedErrorLoggingEnabled": false, + "ftpsState": "AllAllowed", + "functionAppScaleLimit": 0, + "functionsRuntimeScaleMonitoringEnabled": false, + "http20Enabled": false, + "httpLoggingEnabled": false, + "linuxFxVersion": "", + "loadBalancing": "LeastRequests", + "logsDirectorySizeLimit": 35, + "managedPipelineMode": "Integrated", + "minTlsVersion": "1.2", + "minimumElasticInstanceCount": 0, + "netFrameworkVersion": "v4.0", + "nodeVersion": "", + "numberOfWorkers": 1, + "phpVersion": "5.6", + "powerShellVersion": "", + "pythonVersion": "", + "remoteDebuggingEnabled": false, + "requestTracingEnabled": false, + "scmMinTlsVersion": "1.2", + "use32BitWorkerProcess": true, + "virtualApplications": [ + { + "physicalPath": "site\\wwwroot", + "preloadEnabled": false, + "virtualPath": "/" + } + ], + "vnetName": "", + "vnetPrivatePortsCount": 0, + "vnetRouteAllEnabled": false, + "webSocketsEnabled": false + }, + "state": "Running", + "storageAccountRequired": false, + "usageState": "Normal" + } + }, + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WebApps_UpdateSlot", + "title": "Update Web App Slot" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json new file mode 100644 index 000000000000..923187beb563 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/linkedBackends/testBackend/operationresults/operationId" + } + }, + "204": {} + }, + "operationId": "StaticSites_ValidateBackend", + "title": "Validate if backend can be linked to static site." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json new file mode 100644 index 000000000000..94190fb00651 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "environmentName": "default", + "linkedBackendName": "testBackend", + "resourceGroupName": "rg", + "staticSiteLinkedBackendEnvelope": { + "properties": { + "backendResourceId": "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend", + "region": "West US 2" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "202": { + "headers": { + "location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.Web/staticSites/testStaticSite0/builds/default/linkedBackends/testBackend/operationresults/operationId" + } + }, + "204": {} + }, + "operationId": "StaticSites_ValidateBackendForBuild", + "title": "Validate if backend can be linked to static site build." +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json new file mode 100644 index 000000000000..92776989aeed --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json @@ -0,0 +1,22 @@ +{ + "parameters": { + "name": "testStaticSite0", + "api-version": "2026-03-01-preview", + "domainName": "custom.domain.net", + "resourceGroupName": "rg", + "staticSiteCustomDomainRequestPropertiesEnvelope": { + "properties": {} + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/westus2/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2019-01-01" + } + } + }, + "operationId": "StaticSites_ValidateCustomDomainCanBeAddedToStaticSite", + "title": "Validate a custom domain for a static site" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json new file mode 100644 index 000000000000..a9bb29fbe9be --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2026-03-01-preview", + "parameters": { + "properties": { + "vnetName": "vNet123", + "vnetResourceGroup": "vNet123rg", + "vnetSubnetName": "vNet123SubNet" + } + }, + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/verifyHostingEnvironmentVnet", + "properties": { + "failed": false, + "failedTests": [] + } + } + } + }, + "operationId": "VerifyHostingEnvironmentVnet", + "title": "VerifyHostingEnvironmentVnet" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json new file mode 100644 index 000000000000..6c79e7b45837 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json @@ -0,0 +1,73 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "HTTP_Webhook", + "api-version": "2026-03-01-preview", + "repetitionName": "000001", + "requestHistoryName": "08586611142732800686", + "resourceGroupName": "test-resource-group", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "08586611142732800686", + "type": "Microsoft.Web/sites/workflows/runs/actions/requestHistories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586611142736787787412824395CU21/actions/HTTP_Webhook/requestHistories/08586611142732800686", + "location": "West US", + "properties": { + "endTime": "2018-10-25T18:36:52.1863033Z", + "response": { + "bodyLink": { + "contentHash": { + "algorithm": "md5", + "value": "2LOOAR8Eh2pd7AvRHXUhRg==" + }, + "contentSize": 137, + "contentVersion": "2LOOAR8Eh2pd7AvRHXUhRg==", + "uri": "https://tempuri.org" + }, + "headers": { + "Cache-Control": "private", + "Date": "Thu, 25 Oct 2018 18:36:51 GMT", + "Location": "http://www.bing.com/", + "Server": "Microsoft-IIS/10.0", + "X-AspNet-Version": "4.0.30319", + "X-Powered-By": "ASP.NET" + }, + "statusCode": 302 + }, + "startTime": "2018-10-25T18:36:51.9206732Z", + "request": { + "method": "GET", + "headers": { + "Accept-Language": "en-US", + "User-Agent": "azure-logic-apps/1.0,(workflow 80244732be3648f59d2084fd979cdd56; version 08586611142904036539)", + "x-ms-action-tracking-id": "ad27f634-6523-492f-924e-9a75e28619c8", + "x-ms-client-request-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-client-tracking-id": "08586611142736787787412824395CU21", + "x-ms-correlation-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-execution-location": "brazilsouth", + "x-ms-tracking-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-workflow-id": "80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-name": "test-workflow", + "x-ms-workflow-operation-name": "HTTP_Webhook", + "x-ms-workflow-resourcegroup-name": "test-resource-group", + "x-ms-workflow-run-id": "08586611142736787787412824395CU21", + "x-ms-workflow-run-tracking-id": "b4cd2e77-f949-4d8c-8753-791407aebde8", + "x-ms-workflow-subscription-capacity": "Large", + "x-ms-workflow-subscription-id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "x-ms-workflow-system-id": "/locations/brazilsouth/scaleunits/prod-17/workflows/80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-version": "08586611142904036539" + }, + "uri": "http://tempuri.org" + } + } + } + } + }, + "operationId": "WorkflowRunActionRepetitionsRequestHistories_Get", + "title": "Get a repetition request history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json new file mode 100644 index 000000000000..366b2f42704e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json @@ -0,0 +1,76 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "HTTP_Webhook", + "api-version": "2026-03-01-preview", + "repetitionName": "000001", + "resourceGroupName": "test-resource-group", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "08586611142732800686", + "type": "Microsoft.Web/sites/workflows/runs/actions/requestHistories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586611142736787787412824395CU21/actions/HTTP_Webhook/requestHistories/08586611142732800686", + "location": "West US", + "properties": { + "endTime": "2018-10-25T18:36:52.1863033Z", + "response": { + "bodyLink": { + "contentHash": { + "algorithm": "md5", + "value": "2LOOAR8Eh2pd7AvRHXUhRg==" + }, + "contentSize": 137, + "contentVersion": "2LOOAR8Eh2pd7AvRHXUhRg==", + "uri": "https://tempuri.org" + }, + "headers": { + "Cache-Control": "private", + "Date": "Thu, 25 Oct 2018 18:36:51 GMT", + "Location": "http://www.bing.com/", + "Server": "Microsoft-IIS/10.0", + "X-AspNet-Version": "4.0.30319", + "X-Powered-By": "ASP.NET" + }, + "statusCode": 302 + }, + "startTime": "2018-10-25T18:36:51.9206732Z", + "request": { + "method": "GET", + "headers": { + "Accept-Language": "en-US", + "User-Agent": "azure-logic-apps/1.0,(workflow 80244732be3648f59d2084fd979cdd56; version 08586611142904036539)", + "x-ms-action-tracking-id": "ad27f634-6523-492f-924e-9a75e28619c8", + "x-ms-client-request-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-client-tracking-id": "08586611142736787787412824395CU21", + "x-ms-correlation-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-execution-location": "brazilsouth", + "x-ms-tracking-id": "ad484925-4148-4dd0-9488-07aed418b256", + "x-ms-workflow-id": "80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-name": "test-workflow", + "x-ms-workflow-operation-name": "HTTP_Webhook", + "x-ms-workflow-resourcegroup-name": "test-resource-group", + "x-ms-workflow-run-id": "08586611142736787787412824395CU21", + "x-ms-workflow-run-tracking-id": "b4cd2e77-f949-4d8c-8753-791407aebde8", + "x-ms-workflow-subscription-capacity": "Large", + "x-ms-workflow-subscription-id": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "x-ms-workflow-system-id": "/locations/brazilsouth/scaleunits/prod-17/workflows/80244732be3648f59d2084fd979cdd56", + "x-ms-workflow-version": "08586611142904036539" + }, + "uri": "http://tempuri.org" + } + } + } + ] + } + } + }, + "operationId": "WorkflowRunActionRepetitionsRequestHistories_List", + "title": "List repetition request history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json new file mode 100644 index 000000000000..22aa9a74e0d4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json @@ -0,0 +1,59 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-03-01-preview", + "repetitionName": "000001", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "name": "000001", + "type": "Microsoft.Web/sites/workflows/runs/actions/repetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/testAction/repetitions/000001", + "location": "West US", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.1015421Z", + "inputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionInputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dLmnt50joimEMK4k9rR6njHQh94iSFJ9rrDxFbkEg5M" + }, + "outputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionOutputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=B3-X5sqIAv1Lb31GOD34ZgIRUXGuiM2QllWiNwXFYAw" + }, + "repetitionIndexes": [ + { + "itemIndex": 1, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.0929911Z", + "status": "Succeeded", + "trackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3" + } + } + } + }, + "operationId": "WorkflowRunActionRepetitions_Get", + "title": "Get a repetition" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json new file mode 100644 index 000000000000..d60aa5e57039 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json @@ -0,0 +1,103 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "000000", + "type": "Microsoft.Web/sites/workflows/runs/actions/repetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/testAction/repetitions/000000", + "location": "West US", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "0d8152bb-e198-44a9-bde8-5138eea16dd4", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.2264835Z", + "inputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "8q1zMKS5ZyHBrPF+qF1xXw==" + }, + "contentSize": 8, + "contentVersion": "8q1zMKS5ZyHBrPF+qF1xXw==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000000/contents/ActionInputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000000%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=vw4BDdYp4Ap5RXdM7tY_wl9C38DeAHfnixLBEOpideA" + }, + "outputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "8q1zMKS5ZyHBrPF+qF1xXw==" + }, + "contentSize": 8, + "contentVersion": "8q1zMKS5ZyHBrPF+qF1xXw==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000000/contents/ActionOutputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000000%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=y8Wq7jbu85tmlMo_1zpRyqNJuoCaQCFQtZ3bgSovLY0" + }, + "repetitionIndexes": [ + { + "itemIndex": 0, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.217991Z", + "status": "Succeeded", + "trackingId": "0d8152bb-e198-44a9-bde8-5138eea16dd4" + } + }, + { + "name": "000001", + "type": "Microsoft.Web/sites/workflows/runs/actions/repetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/testAction/repetitions/000001", + "location": "West US", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.1015421Z", + "inputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionInputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dLmnt50joimEMK4k9rR6njHQh94iSFJ9rrDxFbkEg5M" + }, + "outputsLink": { + "contentHash": { + "algorithm": "md5", + "value": "OA3i83YHGYVch+N8BQJIRQ==" + }, + "contentSize": 6, + "contentVersion": "OA3i83YHGYVch+N8BQJIRQ==", + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/2dfde2fce2584c49bea17ef0b04c95f4/runs/08586776228332053161046300351/actions/testAction/repetitions/000001/contents/ActionOutputs?api-version=2016-10-01&se=2018-04-18T21%3A00%3A00.0000000Z&sp=%2Fruns%2F08586776228332053161046300351%2Factions%2FtestAction%2Frepetitions%2F000001%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=B3-X5sqIAv1Lb31GOD34ZgIRUXGuiM2QllWiNwXFYAw" + }, + "repetitionIndexes": [ + { + "itemIndex": 1, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.0929911Z", + "status": "Succeeded", + "trackingId": "f84f23eb-b331-4772-9f39-cc307fa83bc3" + } + } + ] + } + } + }, + "operationId": "WorkflowRunActionRepetitions_List", + "title": "List repetitions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json new file mode 100644 index 000000000000..4d9ed7e96b21 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-03-01-preview", + "repetitionName": "000001", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "inputs": [ + { + "path": "", + "text": "items('For_each')?['OccuringLocation']?['Environment']", + "value": "PROD" + } + ] + } + } + }, + "operationId": "WorkflowRunActionRepetitions_ListExpressionTraces", + "title": "List expression traces for a repetition" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json new file mode 100644 index 000000000000..5d8bc8ff02c8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "for_each", + "api-version": "2026-03-01-preview", + "repetitionName": "000000", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "name": "000000", + "type": "Microsoft.Web/sites/workflows/runs/actions/scopeRepetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/for_each/scopeRepetitions/000000", + "location": "West US", + "properties": { + "code": "NotSpecified", + "correlation": { + "actionTrackingId": "5c0e7c24-4891-44e8-b631-8084c5531dd5", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.6240967Z", + "repetitionIndexes": [ + { + "itemIndex": 0, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.209588Z", + "status": "Succeeded" + } + } + } + }, + "operationId": "WorkflowRunActionScopeRepetitions_Get", + "title": "Get a scoped repetition" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json new file mode 100644 index 000000000000..46119e07065d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json @@ -0,0 +1,65 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "for_each", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "000000", + "type": "Microsoft.Web/sites/workflows/runs/actions/scopeRepetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/for_each/scopeRepetitions/000000", + "location": "West US", + "properties": { + "code": "NotSpecified", + "correlation": { + "actionTrackingId": "5c0e7c24-4891-44e8-b631-8084c5531dd5", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.6240967Z", + "repetitionIndexes": [ + { + "itemIndex": 0, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.209588Z", + "status": "Succeeded" + } + }, + { + "name": "000001", + "type": "Microsoft.Web/sites/workflows/runs/actions/scopeRepetitions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testFlow/runs/08586776228332053161046300351/actions/for_each/scopeRepetitions/000001", + "location": "West US", + "properties": { + "code": "NotSpecified", + "correlation": { + "actionTrackingId": "1682d0bd-7189-4478-b333-fe364a80bd69", + "clientTrackingId": "08586775357427610445444523191" + }, + "endTime": "2018-04-18T17:05:57.2272796Z", + "repetitionIndexes": [ + { + "itemIndex": 1, + "scopeName": "For_each" + } + ], + "startTime": "2018-04-18T17:05:57.0686808Z", + "status": "Succeeded" + } + } + ] + } + } + }, + "operationId": "WorkflowRunActionScopeRepetitions_List", + "title": "List the scoped repetitions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json new file mode 100644 index 000000000000..4f8fcddddd40 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json @@ -0,0 +1,40 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "HTTP", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "HTTP", + "type": "Microsoft.Web/sites/workflows/runs/actions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586676746934337772206998657CU22/actions/HTTP", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "56063357-45dd-4278-9be5-8220ce0cc9ca", + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5450625Z", + "inputsLink": { + "contentSize": 138, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionInputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dJ6F00000aaaabbbbccccddddeeeeffff78co" + }, + "outputsLink": { + "contentSize": 15660, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionOutputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=fIIgF00000aaaabbbbccccddddeeeeffffWRU0" + }, + "startTime": "2018-08-10T20:16:32.305236Z", + "status": "Succeeded" + } + } + } + }, + "operationId": "WorkflowRunActions_Get", + "title": "Get a workflow run action" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json new file mode 100644 index 000000000000..241252c8ff75 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json @@ -0,0 +1,43 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "HTTP", + "type": "Microsoft.Web/sites/workflows/runs/actions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/runs/08586676746934337772206998657CU22/actions/HTTP", + "properties": { + "code": "OK", + "correlation": { + "actionTrackingId": "56063357-45dd-4278-9be5-8220ce0cc9ca", + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5450625Z", + "inputsLink": { + "contentSize": 138, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionInputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionInputs%2Fread&sv=1.0&sig=dJ6F00000aaaabbbbccccddddeeeeffff78co" + }, + "outputsLink": { + "contentSize": 15660, + "uri": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/000012345678900000000056a41a/runs/00000aaaabbbbccccddddeeeeffff/actions/HTTP/contents/ActionOutputs?api-version=2018-11-01&code=examplecode=2022-04-13T03%3A00%3A00.0000000Z&sp=%2Fruns%2F00000aaaabbbbccccddddeeeeffff%2Factions%2FHTTP%2Fcontents%2FActionOutputs%2Fread&sv=1.0&sig=fIIgF00000aaaabbbbccccddddeeeeffffWRU0" + }, + "startTime": "2018-08-10T20:16:32.305236Z", + "status": "Succeeded" + } + } + ] + } + } + }, + "operationId": "WorkflowRunActions_List", + "title": "List a workflow run actions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json new file mode 100644 index 000000000000..bf291ddaa028 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-name", + "actionName": "testAction", + "api-version": "2026-03-01-preview", + "repetitionName": "000001", + "resourceGroupName": "testResourceGroup", + "runName": "08586776228332053161046300351", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testFlow" + }, + "responses": { + "200": { + "body": { + "inputs": [ + { + "path": "", + "text": "add(4, 4)", + "value": 8 + } + ] + } + } + }, + "operationId": "WorkflowRunActions_ListExpressionTraces", + "title": "List expression traces" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json new file mode 100644 index 000000000000..cad16a690593 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": {} + }, + "operationId": "WorkflowRuns_Cancel", + "title": "Cancel a workflow run" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json new file mode 100644 index 000000000000..7ac03e92156f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json @@ -0,0 +1,47 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "runName": "08586676746934337772206998657CU22", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/runs/08586676746934337772206998657CU22", + "properties": { + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5779999Z", + "outputs": {}, + "startTime": "2018-08-10T20:16:32.044238Z", + "status": "Succeeded", + "trigger": { + "name": "Recurrence", + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.0387927Z", + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + }, + "waitEndTime": "2018-08-10T20:16:32.044238Z", + "workflow": { + "name": "08586676754160363885", + "type": "Microsoft.Web/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/versions/08586676754160363885" + } + } + } + } + }, + "operationId": "WorkflowRuns_Get", + "title": "Get a run for a workflow" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json new file mode 100644 index 000000000000..09ca493c1393 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json @@ -0,0 +1,50 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/runs/08586676746934337772206998657CU22", + "properties": { + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.5779999Z", + "outputs": {}, + "startTime": "2018-08-10T20:16:32.044238Z", + "status": "Succeeded", + "trigger": { + "name": "Recurrence", + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.0387927Z", + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + }, + "waitEndTime": "2018-08-10T20:16:32.044238Z", + "workflow": { + "name": "08586676754160363885", + "type": "Microsoft.Web/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/workflows/test-workflow/versions/08586676754160363885" + } + } + } + ] + } + } + }, + "operationId": "WorkflowRuns_List", + "title": "List workflow runs" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json new file mode 100644 index 000000000000..aac1d403d861 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json @@ -0,0 +1,38 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "historyName": "08586676746934337772206998657CU22", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTriggerName", + "workflowName": "testWorkflowName" + }, + "responses": { + "200": { + "body": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/triggers/histories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22", + "properties": { + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.2987996Z", + "fired": true, + "run": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/runs/08586676746934337772206998657CU22" + }, + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + } + } + } + }, + "operationId": "WorkflowTriggerHistories_Get", + "title": "Get a workflow trigger history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json new file mode 100644 index 000000000000..0b93121c2a61 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json @@ -0,0 +1,41 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTriggerName", + "workflowName": "testWorkflowName" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/triggers/histories", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22", + "properties": { + "code": "OK", + "correlation": { + "clientTrackingId": "08586676746934337772206998657CU22" + }, + "endTime": "2018-08-10T20:16:32.2987996Z", + "fired": true, + "run": { + "name": "08586676746934337772206998657CU22", + "type": "Microsoft.Web/sites/workflows/runs", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/sites/test-name/workflows/testWorkflowName/runs/08586676746934337772206998657CU22" + }, + "scheduledTime": "2018-08-10T20:16:31.6344174Z", + "startTime": "2018-08-10T20:16:32.0387927Z", + "status": "Succeeded" + } + } + ] + } + } + }, + "operationId": "WorkflowTriggerHistories_List", + "title": "List a workflow trigger history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json new file mode 100644 index 000000000000..6680d415790d --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "historyName": "testHistoryName", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTriggerName", + "workflowName": "testWorkflowName" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WorkflowTriggerHistories_Resubmit", + "title": "Resubmit a workflow run based on the trigger history" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json new file mode 100644 index 000000000000..368eba01f49f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "manual", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "manual", + "type": "Microsoft.Web/sites/workflows/triggers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/triggers/manual", + "properties": { + "changedTime": "2018-08-10T18:47:49.5288666Z", + "createdTime": "2018-08-10T17:32:30.2496336Z", + "provisioningState": "Succeeded", + "state": "Enabled", + "workflow": { + "name": "08586676800160476478", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586676800160476478" + } + } + } + } + }, + "operationId": "WorkflowTriggers_Get", + "title": "Get a workflow trigger" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json new file mode 100644 index 000000000000..62a1177e0847 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "testTrigger", + "workflowName": "testWorkflow" + }, + "responses": { + "200": { + "body": { + "content": "JsonContent", + "title": "JsonTitle" + } + } + }, + "operationId": "WorkflowTriggers_GetSchemaJson", + "title": "Get trigger schema" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json new file mode 100644 index 000000000000..07c3ba1a9e0c --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json @@ -0,0 +1,35 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "manual", + "type": "Microsoft.Web/sites/workflows/triggers", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/triggers/manual", + "properties": { + "changedTime": "2018-08-10T18:47:49.5288666Z", + "createdTime": "2018-08-10T17:32:30.2496336Z", + "provisioningState": "Succeeded", + "state": "Enabled", + "workflow": { + "name": "08586676800160476478", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586676800160476478" + } + } + } + ] + } + } + }, + "operationId": "WorkflowTriggers_List", + "title": "List workflow triggers" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json new file mode 100644 index 000000000000..9b869c660815 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json @@ -0,0 +1,27 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "manual", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "method": "POST", + "basePath": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/fb9c8d79b15f41ce9b12861862f43546/versions/08587100027316071865/triggers/manualTrigger/paths/invoke", + "queries": { + "api-version": "2018-07-01-preview", + "sig": "IxEQ_ygZf6WNEQCbjV0Vs6p6Y4DyNEJVAa86U5B4xhk", + "sp": "/versions/08587100027316071865/triggers/manualTrigger/run", + "sv": "1.0" + }, + "value": "https://test-site.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/fb9c8d79b15f41ce9b12861862f43546/versions/08587100027316071865/triggers/manualTrigger/paths/invoke?api-version=2015-08-01-preview&sp=%2Fversions%2F08587100027316071865%2Ftriggers%2FmanualTrigger%2Frun&sv=1.0&sig=IxEQ_ygZf6WNEQCbjV0Vs6p6Y4DyNEJVAa86U5B4xhk" + } + } + }, + "operationId": "WorkflowTriggers_ListCallbackUrl", + "title": "Get the callback URL for a trigger" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json new file mode 100644 index 000000000000..4b142702b7c8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json @@ -0,0 +1,20 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "triggerName": "recurrence", + "workflowName": "test-workflow" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" + } + } + }, + "operationId": "WorkflowTriggers_Run", + "title": "Run a workflow trigger" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json new file mode 100644 index 000000000000..248788bb65a4 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json @@ -0,0 +1,45 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "versionId": "08586676824806722526", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "name": "test-workflow", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586676824806722526", + "location": "West US", + "properties": { + "changedTime": "2018-08-09T22:54:54.3533634Z", + "createdTime": "2018-04-25T01:39:21.4365247Z", + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + }, + "endpointsConfiguration": { + "connector": { + "outgoingIpAddresses": [] + }, + "workflow": { + "accessEndpointIpAddresses": [], + "outgoingIpAddresses": [] + } + }, + "parameters": {}, + "version": "08586677515911718341" + } + } + } + }, + "operationId": "WorkflowVersions_Get", + "title": "Get a workflow version" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json new file mode 100644 index 000000000000..034c6fc1ebf3 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json @@ -0,0 +1,48 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "test-workflow" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "test-workflow", + "type": "Microsoft.Web/sites/workflows/versions", + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/sites/test-name/workflows/test-workflow/versions/08586677515911718341", + "location": "West US", + "properties": { + "changedTime": "2018-08-09T22:54:54.3533634Z", + "createdTime": "2018-04-25T01:39:21.4365247Z", + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + }, + "endpointsConfiguration": { + "connector": { + "outgoingIpAddresses": [] + }, + "workflow": { + "accessEndpointIpAddresses": [], + "outgoingIpAddresses": [] + } + }, + "parameters": {}, + "version": "08586677515911718341" + } + } + ] + } + } + }, + "operationId": "WorkflowVersions_List", + "title": "List a workflows versions" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json new file mode 100644 index 000000000000..30ed3471bf05 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json @@ -0,0 +1,17 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "keyType": { + "keyType": "Primary" + }, + "resourceGroupName": "testResourceGroup", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "workflowName": "testWorkflowName" + }, + "responses": { + "200": {} + }, + "operationId": "Workflows_RegenerateAccessKey", + "title": "Regenerate the callback URL access key for request triggers" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json new file mode 100644 index 000000000000..e976b1f420f9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json @@ -0,0 +1,28 @@ +{ + "parameters": { + "name": "test-name", + "api-version": "2026-03-01-preview", + "location": "brazilsouth", + "resourceGroupName": "test-resource-group", + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "validate": { + "properties": { + "definition": { + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "actions": {}, + "contentVersion": "1.0.0.0", + "outputs": {}, + "parameters": {}, + "triggers": {} + }, + "kind": "Stateful" + } + }, + "workflowName": "test-workflow" + }, + "responses": { + "200": {} + }, + "operationId": "Workflows_Validate", + "title": "Validate a workflow" +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json index 8427da59c935..427efaad1438 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "name": "aigateway1", "resource": { "properties": {}, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json index 5307572af8dd..c0e4b6a89dc7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "name": "aigateway1" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json index e2b685611485..90e427821a73 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "name": "aigateway1" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json index 7324c866a2c1..ec8294d03988 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-06-01-preview" + "api-version": "2026-03-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json index f2c519bcb6ff..794d4700925f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json @@ -3,7 +3,7 @@ "title": "ListAiGatewaysBySubscription", "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2026-06-01-preview" + "api-version": "2026-03-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json index b2adc6e80d4b..e24945117376 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "name": "aigateway1", "properties": { "tags": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json index 28d409a04254..ac3ade6f9023 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json index 6ad17beb6d3f..8aa228fe28a6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json index acc1d63cc76b..bdad092df2be 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json index 3c960d1041f8..e133aef7786c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "vnetInfo": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json index d1d3fe9a3db0..58507447c631 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "hostingEnvironmentEnvelope": { "kind": "Asev3", "location": "South Central US", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json index d5fad44ec5c9..746710039630 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "multiRolePoolEnvelope": { "properties": { "workerCount": 3, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json index 6fa089a58fc1..5d022c249f32 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "multiRolePoolEnvelope": { "properties": { "workerCount": 3, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json index ac727054c2cf..7452ba4b9b13 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json index fa9ad3d72cee..5a331e3bd804 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json index b4b34ce5e7fd..4499c712ad78 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json index 36f295770f58..feccbff76356 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json index a7f15f123f8b..dc1038735eb7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json index bfa062b1e629..ef47dcc02ee9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json index b3684e4ece5f..bd98d3e2ddaf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticsName": "test-diagnostic", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json index 4c7de5d4c983..0dcaae19abe3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json index 626234dc0f1e..b5fe06e8948f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json index 98bd8d67866c..c44f791d1328 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json index c7e2528eaf55..e664d7a84632 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json index 9c3624b218c1..1170e76d004b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json index 4afd38955b5e..83d875d4f321 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "workerPool1" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json index a41e60a5e89a..642ad6f1528e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json index 8d55a2dcc05f..5da2a93be642 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json index 337eb5150f44..7c672193663b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json index 940a0f0ffec4..ed687e58d312 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json index 6475b28f5e61..c8129d9eb83a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json index d1e49bfd3ae9..fdc50821d3e5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json index f7adaba1bb8d..4e3ef0874d91 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "instance": "10.7.1.8", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json index 129eb0e1af75..f15916c3ffa9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json index 469c77812ded..4ddd69a3351e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json index 9a96716709aa..c809f5120bff 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json index 1db82783e992..b97d8269ba4e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json index 4739fd8e6f6c..a1ed105eb6d1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json index 301f1c6f8b24..00afe44dafea 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json index 2148129492aa..cb6377d92673 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "0" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json index 7a71b322cd5a..8e60943625ce 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "0" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json index d0d1626c69ad..a987f8354b6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "instance": "10.8.0.7", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json index 680913a1bbea..0f57ba4510af 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "workerPool1" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json index 48ac77e241b4..e7340e69bf3f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json index 838521a33d6c..a204382c11b6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json index 7d0133d301bd..e8c14d5fc92e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json index 364b8965a96a..567d05f8d80e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json index d05c40658a25..dcf3b529d806 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleHostingEnvironment", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json index a3f638801da6..8d517d34eaf8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "hostingEnvironmentEnvelope": { "properties": { "frontEndScaleFactor": 20, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json index acaad5e72d61..fb477539eb31 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "aseNetworkingConfiguration": { "properties": { "ftpEnabled": true, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json index 47cd15493a6c..5fa952c0a017 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleHostingEnvironment", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json index df0398d1c265..b954966d07a2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slotSwapEntity": { "preserveVnet": true, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json index 8ebe7741412a..b4cbc945b6b4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json index 7a6fa475cb98..580180b23db0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json index bcfc5b41c895..f47cf2f34825 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json index 4820324c09f3..f065d190c995 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "request": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json index 097f7a1d1a17..1c14b78d3763 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -256,7 +256,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json index f6b6299a79d3..846dc1740f15 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -257,7 +257,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json index 8358d01a6375..3d368785135e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appServicePlan": { "kind": "app", "location": "East US", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json index 781e5c91e111..9b4d367fe7c7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json index e4fa62fe722d..4a9aa2b4d679 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "functionapp,linux", @@ -344,7 +344,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json index 5e430573cdc6..16dbb08c6891 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "functionapp,linux", @@ -373,7 +373,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json index cd8388b9500c..b690adc26358 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json index 17b4e95c1776..d0bff32e651c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json index e3fcf02c960d..4de065aea990 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "staticSiteEnvelope": { "location": "West US 2", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json index 33fa5a62293a..5783f672072e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json index c5926c9dd0d6..faa06f5277b8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "basicAuthEnvelope": { "properties": { "applicableEnvironmentsMode": "AllEnvironments", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json index b374b667d8a8..623e50cbd54f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json index 17765ad3b120..544fec80e6a5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json index 87a63cc5c8de..4b4f97223e74 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json index 9152749f1212..1e435fbb6bab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "staticSiteCustomDomainRequestPropertiesEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json index 50456dc10a4a..60a45c4e0a97 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json index 456b740a6a3d..535b20da9036 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json index c5cdb36a4f15..aaded9c688a9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -255,7 +255,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json index a59f6c014ba4..14d5d49ad0aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -246,7 +246,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json index 12e519f33ec1..5a91d6255309 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "staticSiteUserRolesInvitationEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json index 934a0510bd21..413b00dc40f1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json index 67361ec324f7..951740b37683 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json index fc48ebee3168..fd3398522ed8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json index 3292f05f41d8..a13edb2b1d48 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowArtifacts": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json deleted file mode 100644 index 84d717faf682..000000000000 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "name": "testsf6141", - "siloName": "eastus-silo", - "api-version": "2026-06-01-preview" - }, - "responses": { - "202": {}, - "204": {} - }, - "operationId": "ServerFarmSilos_DeleteServerFarmSilo", - "title": "Delete App Service plan silo" -} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json index df8394e97b4b..8cbce425a7aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json index 85b27095f910..553b8e65786f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json index 1ca1bb39099c..df88dc325b09 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json index 00cae422c483..065b7a1a4d34 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json index d186aabb8f5b..7590d82f3bac 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json deleted file mode 100644 index 6e937b4c4ae2..000000000000 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "name": "testsite", - "siloName": "eastus-silo", - "api-version": "2026-06-01-preview" - }, - "responses": { - "202": {}, - "204": {} - }, - "operationId": "SiteSilos_DeleteSiteSilo", - "title": "Delete site silo" -} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json index 49e7e72a52e1..0ffa049a02a1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json index 0cf1d1be5a5f..503347df844d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json index 34adeaf2df20..848a9ce1299b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json index 69f512174034..8c73b4d2b880 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json index d27f6d38e771..f97cb727ce2d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json index 53c881edbb6a..e4cdb54d3097 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "authprovider": "aad", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json index f1b8eaa2bf44..7034eca9195d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json index bc7a1e2d908b..c55213dfc53d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json index 23f031e3c839..736fc64b4b11 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json index 005615ff7d65..5451cbe355e2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json index f628e6b3eceb..bce7e778a0d8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json index f798dc3988f1..7076bef08871 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "12", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json index 2bb5eaced008..0ba41ca60056 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json index a92f8372c11e..1648ef7ad14f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json index 3efff0116483..6ae336ec6bf5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json index e24527df4220..c19a7efcded3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json index 8cfd432fcc69..8a664df9d36f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json index 95d83eb0c348..e53a16cb7eef 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json index caa05848a61b..e83f0acdc4cf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json index ce070f8f6fff..a214efe53e6b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json index 54f9e8535817..1d694b9dcc18 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAppServiceEnvironment", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json index 817e5a599251..62b16480902a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json index 755ce8980756..68e2be370b8e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json index 0a9bfdb6d3bf..5713921fb76a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json index 3f241886fae2..1a79eeae1656 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json index ba4ddc71de9f..f613a792d3f6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json index d9b8cb27706d..a6ab3c4aeccf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json index dd11df514be4..27a660cf2e90 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json index fab8f1317bbc..32782df2cae6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json index 38d11dc54db2..9ab7105958db 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json index 159e415eb429..9849ccb2445c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json index bf8e77a704a3..cd80cc6c53b3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json index b77d4dbf7189..4cc80a8ba971 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json index c89d977493fa..bd3780216fbb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json index c8bed91c2806..bd722b380ee6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json index 0fba7233aca2..b57f96108cba 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json index 809c1214f9f5..35a82c113ac5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json index 7d5ed2e726e0..5f36849eb78e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAppServiceEnvironment", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json index 40c74e396a76..af8f377c246d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json index 5ad4e4761bb5..4429f8181617 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json index 60b7341fd77b..e7e43014b88d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json index eecc8c970ff4..3e295aeeb3de 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json index 4afa317e0dc1..5381747f42b4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json index 05e2bcf60476..0f729bc4ca99 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json index 9e891a583f52..89682e145b92 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json index 0f68c7cc3fd2..2af63e524dab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json index 868640a47080..174a09833a31 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json index 037de0e59388..1d672d26eb09 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json index 2d1d20d679c5..516eb5d7a126 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json index 6e4e98f18ed7..2d699901b395 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json index 620548a50aef..04d79e514903 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json index 39da6827e8fe..f0f1308f45e9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json index ae63133ffcfb..688acde1bc4d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json index 775cdbc18914..9f129cc54793 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json index eecc12b531ca..892e1ba3af9b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "location": "West US 2", "staticSitesWorkflowPreviewRequest": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json index 311810dd2e43..6536045d8be9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json index 74db79e7c3cb..cdd145efdf49 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json index 33e9f96d40de..cbff19850577 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json index 5921b265747c..b66d39756d93 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json index f02d0515b777..74029e1b0e0f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json index 3f56816eb69c..916944965cad 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "deletedSiteId": "9", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json index 4d00b1ef1ad3..8595bf520183 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "deletedSiteId": "9", "location": "West US 2", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json index 554b075fe4ab..accacf14cef8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "deletedSiteId": "9", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json index c4df1f198211..2d654fdf5c95 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview" + "api-version": "2026-03-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json index 4c88e0ccb0ba..836607fd0bf7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "location": "westus" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json index 75b8591b0b14..0bff34a77bd2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAse", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json index 7d1a87315ecc..61ee968d1a63 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appSettingKey": "setting", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json index cfefeb520191..8c3a6c95cce7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appSettingKey": "setting", "resourceGroupName": "testrg123", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json index 66ea6edda287..eabd307ba656 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json index 8cb62625a988..531d531bff39 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json index 46ebeaa1d1a5..e99adff15227 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json index a07e5a9e1c6b..11e70c071e7d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json index 6b27158725d5..572a238cbbab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json index c34c3f4bec32..4ded38bf265e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json index 509b5415a6bf..25081326b295 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAse", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json index 72613449fbd3..bd434bcbcdf2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json index bf88b60fa69c..bb991268d6ee 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json index 4202f784c05f..18e7c81b84f2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json index 402e1cbfdcdc..b3e297543295 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json index 15abbb5b39cd..8a85e31836b7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "metadataName": "default", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json index 1a37caa1de21..d655067d365f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "metadataName": "default", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json index efd05b3a09fc..2d0ea5021f20 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json index 12afdcc16f9c..bfd1b47ace1e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json index 28fe48d43182..839492800f28 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json index 1bad1186bff6..2fad104135f9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json index 25ab49b3af10..5fb3748a3dce 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json index 96ad3e29b4f1..d52937437a4f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "instanceId": "134987120", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json index bb8c0e70603f..0fee6e3bb085 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "instanceId": "134987120", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json index 591b6de7214a..e7197a03278b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json index 93fff1442688..8d613dd49510 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json index e16152ab2258..65024f71f8e5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json index ec5ccbcbb61c..8bacf2962f72 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json index 83d9a9dbcb3f..0321f08bb093 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json index bbac13c8735d..52597ce6faab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json index 8a6bd4993362..55026a448074 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json deleted file mode 100644 index d047d20672ac..000000000000 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "name": "testsite", - "siloName": "eastus-silo", - "api-version": "2026-06-01-preview" - }, - "responses": { - "200": { - "body": { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", - "name": "eastus-silo", - "type": "Microsoft.Web/sites/silos", - "location": "East US", - "properties": { - "siloLocation": "eastus", - "primarySiteName": "testsite", - "primaryLocation": "westus", - "provisioningState": "Succeeded" - } - } - } - }, - "operationId": "SiteSilos_GetSiteSilo", - "title": "Get site silo" -} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json index d813f46f90a8..ae06848e8d0e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json index e530b7ec83b4..ed4b50793a99 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "basicAuthName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json index 014b1556e51f..ac8e8e0ae6a9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json index 5bc9c725aa35..6811e8496d59 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json index e38e44515bd0..7cf84befa150 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json index bb1c989f4cdf..df60c0f0e217 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json index da9c9ec57680..f3c1375b8851 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json index 9530f9d4e209..9bf59f6117aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json index b9ce2f6b6fbb..f9be1f97c63f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json index 1344c9aef228..99b223fd0bfd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json index 4a39530ee3b5..d692785cdc88 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json index c8247271d4e4..633dbd5ae0f2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json index 8f167c85b18c..6ff5dc4ad6d0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json index 2be29e5da388..baa7bbc33864 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json index 2e9bda077b56..0fa9430369f7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json index 2367315ba428..de1ec550be18 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json @@ -1,7 +1,7 @@ { "parameters": { "operationId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab5d5", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "location": "West US", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json index c7b18f2993cb..ed4d59430ab6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "location": "West US", "quotaType": "regional", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json index 42732b98db5a..53748ae257c9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json index 448e2b2d2662..d6c60714b47a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json index 1983f93fe0eb..441147411b7a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json index 260e4afcc792..996f80d7c9d4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json index 12d828b27405..830a60bcc13f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json index 834c6375f44a..a7ffc4412181 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json index 304109d53521..bea9e24dcbf9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json index 20718f83c2b5..ef0d8938d641 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json index 3c67121e1114..7161cab1966f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview" + "api-version": "2026-03-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json index c8f3eb45da6c..c7021df618dc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "location": "westus" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json index 3e3660ce7a85..2a947b4d90a3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json index 65d3baa2fcdb..de6ee3ff4af4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json index 2b5800ec71aa..832d6cdb71a5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json index 81e649b97485..2439bf62e0ed 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json index 607365bd0c81..5acbe8761bc2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json index ea580bedde83..a87a30022f5f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json index bd20d9f5d97c..c14309b7247d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json index 3c82e78fec9b..21770d48efc8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json index c2803170d857..f9628b29194a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json index 93a4cbfe688d..ce60e355a67e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json index c760f64a2bca..9598091e195b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testkubeenv", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json index 7d6f7886e53b..ed49c0b7d0da 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json @@ -1,7 +1,7 @@ { "parameters": { "name": "examplekenv", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" @@ -15,7 +15,7 @@ "200": {}, "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-06-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-03-01-preview" } }, "204": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json index afebc690e2b2..72fecfb96341 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "jlaw-demo1", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "extendedLocation": { "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json index bad3795e7801..a1edaf6a05b6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "Samplek8se", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "examplerg", "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json index 14d33eb3ef82..05b441fe8385 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json @@ -1,7 +1,7 @@ { "parameters": { "name": "examplekenv", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "examplerg", "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json index 1a0c4b662bff..268442f85c1d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testkubeenv", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_GetLastKnownGood.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_GetLastKnownGood.json new file mode 100644 index 000000000000..184c35457c59 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_GetLastKnownGood.json @@ -0,0 +1,24 @@ +{ + "operationId": "LastKnownGoods_GetLastKnownGood", + "title": "Get the current Last Known Good revision for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "lkgName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/lastKnownGood/default", + "name": "default", + "type": "Microsoft.Web/sites/lastKnownGood", + "properties": { + "siteName": "sitef6141", + "createdTime": "2026-01-15T10:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_MarkLastKnownGood.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_MarkLastKnownGood.json new file mode 100644 index 000000000000..efb1a4848d6e --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_MarkLastKnownGood.json @@ -0,0 +1,24 @@ +{ + "operationId": "LastKnownGoods_MarkLastKnownGood", + "title": "Mark the current site state as Last Known Good", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "lkgName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/lastKnownGood/default", + "name": "default", + "type": "Microsoft.Web/sites/lastKnownGood", + "properties": { + "siteName": "sitef6141", + "createdTime": "2026-04-22T14:30:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json index a4634d6133e3..c63314c9768e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "staticSiteLinkedBackendEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json index b8086db931e7..169f2f9acec5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json index 26b4f80443d3..78522eb84c8c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json index 9d8e7e3f371e..2256122b7d4a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json index 531cceea3ac9..d68c3ae3ebfa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json index d4fac703a407..f7a90ab6d95c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json index 887e517949db..ab6d645e3a7a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json index 742fd05d3fa8..5c30be78c989 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json index f11aba68ec84..2893cce04cbc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json index 153a80cb2f0f..aedc0408af9e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json index cd2d7f587847..3c01f9e6a02f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "00000000-0000-0000-0000-000000000000" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json index aace4de56d23..9f343433f090 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "hostname": "www.example.com", "subscriptionId": "00000000-0000-0000-0000-000000000000" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json index c6258ca4e5d6..804a026cb6d3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "location": "West US 2", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json deleted file mode 100644 index a9c4bfb2fd81..000000000000 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "name": "testsite", - "api-version": "2026-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/managedTrafficConfig/default", - "name": "default", - "type": "Microsoft.Web/sites/managedTrafficConfig", - "properties": { - "trafficMode": "Active", - "endpoints": [ - { - "region": "westus", - "priority": 1, - "weight": 500 - }, - { - "region": "eastus", - "priority": 1, - "weight": 500 - } - ], - "provisioningState": "Succeeded" - } - } - ] - } - } - }, - "operationId": "ManagedTrafficConfigs_ListManagedTrafficConfigs", - "title": "List managed traffic configurations" -} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json index fc929cf5d52c..30e5104a458b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview" + "api-version": "2026-03-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json index 66c1d54ef9a4..6e3d6f453964 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json index 03f728fd60fe..63b17d49ca69 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json index 8e6e6dbdc45b..357a6f61256e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json index b7dc070edd5f..86527f6ee0b4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json index 30de074d9fed..96baac08b12a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json index 5beb23ad5274..7d020af287c5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json deleted file mode 100644 index dbf2b74a7c1d..000000000000 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "name": "testsf6141", - "api-version": "2026-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/eastus-silo", - "name": "eastus-silo", - "type": "Microsoft.Web/serverfarms/silos", - "location": "East US", - "properties": { - "siloLocation": "eastus", - "primaryServerFarmName": "testsf6141", - "primaryLocation": "westus", - "provisioningState": "Succeeded" - } - } - ] - } - } - }, - "operationId": "ServerFarmSilos_ListServerFarmSilos", - "title": "List App Service plan silos" -} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json index 0b864006c702..f45256f7a520 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json index 1854faf495a2..4c5a89e6852e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json index 571db4938b81..648bb181c48d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json index d696ac2ed2fd..1913ad42d187 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json index eca1f3506efc..7a236b91656e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json deleted file mode 100644 index a4949e8e037d..000000000000 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "parameters": { - "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", - "resourceGroupName": "testrg123", - "name": "testsite", - "api-version": "2026-06-01-preview" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/testsite/silos/eastus-silo", - "name": "eastus-silo", - "type": "Microsoft.Web/sites/silos", - "location": "East US", - "properties": { - "siloLocation": "eastus", - "primarySiteName": "testsite", - "primaryLocation": "westus", - "provisioningState": "Succeeded" - } - } - ] - } - } - }, - "operationId": "SiteSilos_ListSiteSilos", - "title": "List site silos" -} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json index 3dd09c94bd45..93ee32d3e8e2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json index b514ba68f432..590ab91d4c26 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json index e1302907cd5b..fd0474c29010 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json index a50b2220b0e4..c3f63d2f691a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json index ad47acabc5e7..22f9a4196958 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json index 820d783eea64..7f421309b684 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json index 687000b8fa21..c62ac83f319a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json index a5f4baea5a49..9cf19359dae5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json index a3e8e48a55d6..a25a5c6668e8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json index 97c11cbc9dd3..21ea987897bb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json index 9f52c5b5561e..943ac950d04b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "authprovider": "all", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json index 63c01fe1af0c..a3da819c91a7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json index f4689ef1b9e1..46373bad0ca7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json index 27beb8001b76..fdf7b773c076 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", "name": "sitef6141", - "api-version": "2026-06-01-preview" + "api-version": "2026-03-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json index b53e37230638..6033df8c8bd2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json index 44f9503fc5ef..443b28e3e364 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json index a05bcb93afe2..31205eb6cee5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json index 127e62be5191..aa2a17e3bd83 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "configurationName": "connections", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json index 51cf90ecd9bc..f49223d2856b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "configurationName": "connections", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json index 2c8d32a3d8a0..c9a10f3ec32b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json new file mode 100644 index 000000000000..e96cb5f8587b --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json @@ -0,0 +1,57 @@ +{ + "operationId": "ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig", + "title": "Create or update the managed traffic configuration for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "configName": "default", + "api-version": "2026-06-01-preview", + "resource": { + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ], + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_GetManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_GetManagedTrafficConfig.json new file mode 100644 index 000000000000..c7b46138c021 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_GetManagedTrafficConfig.json @@ -0,0 +1,38 @@ +{ + "operationId": "ManagedTrafficConfigs_GetManagedTrafficConfig", + "title": "Get the managed traffic configuration for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "configName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ], + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json index b073c6aabdf6..41ff38517ef0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appServicePlan": { "kind": "app", "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json index 6bc46c34db28..e77ae0c2caf0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json index 3b1648e2038b..8749a95a160d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json index b87133e66356..5eb51ccddb14 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json index 09550ca8006d..3fa316aef33d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "staticSiteEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json index c04b2a10e925..05bf4b9bf318 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json index 03227132a40f..85948117181f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json index b4775ef5cef8..6bfe8dbf72f9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowArtifacts": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json index ac760a6b0b8e..1d5ce85f7b20 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "testsSlot", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json index 6ce5704fbf53..c94ed7f2367c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "functionAppName": "testFunctionApp", "isForced": "true", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json index f843f6e9aae3..339f4e781c73 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "functionAppName": "testFunctionApp", "isForced": "true", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json index b88069aedf40..65d6558423b3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resetPropertiesEnvelope": { "properties": { "repositoryToken": "repoToken123", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json index 1626f8ae9d10..068e874b887b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "backupId": "123244", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", @@ -31,7 +31,7 @@ "200": {}, "202": { "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json new file mode 100644 index 000000000000..b3237ce6f896 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json @@ -0,0 +1,59 @@ +{ + "operationId": "ServerFarmSilos_CreateOrUpdateServerFarmSilo", + "title": "Create or update an App Service plan silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview", + "resource": { + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "InProgress", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T10:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_DeleteServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_DeleteServerFarmSilo.json new file mode 100644 index 000000000000..3f401124f34f --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_DeleteServerFarmSilo.json @@ -0,0 +1,19 @@ +{ + "operationId": "ServerFarmSilos_DeleteServerFarmSilo", + "title": "Delete an App Service plan silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus/operationresults/00000000-0000-0000-0000-000000000000?api-version=2026-06-01-preview" + } + }, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_GetServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_GetServerFarmSilo.json new file mode 100644 index 000000000000..297ee06d59d1 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_GetServerFarmSilo.json @@ -0,0 +1,31 @@ +{ + "operationId": "ServerFarmSilos_GetServerFarmSilo", + "title": "Get a specific silo for an App Service plan", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_ListServerFarmSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_ListServerFarmSilos.json new file mode 100644 index 000000000000..a139ca215a85 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_ListServerFarmSilos.json @@ -0,0 +1,50 @@ +{ + "operationId": "ServerFarmSilos_ListServerFarmSilos", + "title": "Get all silos for an App Service plan", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-westus", + "name": "silo-westus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "West US", + "properties": { + "siloLocation": "West US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 2, + "zoneRedundantOverride": false, + "provisioningState": "Succeeded", + "createdTime": "2026-01-10T08:00:00Z", + "lastModifiedTime": "2026-01-10T09:00:00Z" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdateSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdateSiteSilo.json new file mode 100644 index 000000000000..1a194d223121 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdateSiteSilo.json @@ -0,0 +1,97 @@ +{ + "operationId": "SiteSilos_CreateOrUpdateSiteSilo", + "title": "Create or update a web app silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview", + "resource": { + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true, + "provisioningState": "InProgress", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "CheckingEndpoint", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T10:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_DeleteSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_DeleteSiteSilo.json new file mode 100644 index 000000000000..07ba72b78847 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_DeleteSiteSilo.json @@ -0,0 +1,19 @@ +{ + "operationId": "SiteSilos_DeleteSiteSilo", + "title": "Delete a web app silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus/operationresults/00000000-0000-0000-0000-000000000000?api-version=2026-06-01-preview" + } + }, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_GetSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_GetSiteSilo.json new file mode 100644 index 000000000000..e82ae93d3db0 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_GetSiteSilo.json @@ -0,0 +1,45 @@ +{ + "operationId": "SiteSilos_GetSiteSilo", + "title": "Get a specific silo for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_ListSiteSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_ListSiteSilos.json new file mode 100644 index 000000000000..4ecb64e0ad65 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_ListSiteSilos.json @@ -0,0 +1,60 @@ +{ + "operationId": "SiteSilos_ListSiteSilos", + "title": "Get all silos for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-westeurope", + "name": "silo-westeurope", + "type": "Microsoft.Web/sites/silos", + "location": "West Europe", + "properties": { + "siloLocation": "West Europe", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "followLkg": false, + "provisioningState": "Succeeded", + "revisionId": "rev-002", + "defaultHostName": "sitef6141-silo-westeurope.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-10T08:00:00Z", + "lastModifiedTime": "2026-01-10T09:00:00Z" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json index 9b3ac2e9f48d..d08027b16512 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json index 2cf71f333f17..fbd8aa61f9ee 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json index 2fc5568b87cf..0142c081a280 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json index 78009fa07354..e4a69871e4b9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json index 0286c04986fb..63bdcd1ceb28 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "12", "resourceGroupName": "rg", "staticSiteZipDeploymentEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json index bcc3e664ff54..063d84a95da4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "staticSiteZipDeploymentEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json index a6236a898734..112508c217d4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json index b269c323ec12..2805fa6b5594 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json index d538f56ca34e..51f520450cd8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json index dde74288e554..f1f5e80b1cbf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json index cb1f45a5b4fc..65ba920f246a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "cleanUpAuth": true, "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json index 67378dc910fd..cdcf2b16173e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "cleanUpAuth": true, "environmentName": "12", "linkedBackendName": "testBackend", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json index 8b2f94ef4d52..6931aefb0c76 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "appSettings": { "properties": { "Setting1": "Value1", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json index bf2ef1a8a847..4d6f9f2f76d4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "customDnsSuffixConfiguration": { "properties": { "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json index 320434b61d46..4ba845970fbb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteAuthSettings": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json index cf8485ceb5fc..8c9f96f91b40 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteAuthSettingsV2": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json index e38309cfe970..5947ea770da9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "azureStorageAccounts": { "properties": { "account1": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json index 51a103019aad..221f9b79073b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "contoso", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json index 8b766094a772..cacef8a4499c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json index 02c876361162..27d609eb77c6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json index 6e8a0dd17f03..7aae966734ab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json index 14483fe08e9f..2ce3b47739b8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json index fec7772d7330..9eb890e4d12e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteConfig": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json index 08adec1eda1b..df2155526dfe 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "authprovider": "aad", "resourceGroupName": "rg", "staticSiteUserEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json index e4f925c9b508..d06fc8607ae8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "properties": { @@ -252,7 +252,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json index d65c2ebcbab7..9c0b4ebb4e8c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "properties": { @@ -243,7 +243,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json index 5d3f9e8e8852..923187beb563 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "staticSiteLinkedBackendEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json index e32540b8eb75..94190fb00651 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json index 896a977d24df..92776989aeed 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "staticSiteCustomDomainRequestPropertiesEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json index 1a25b0bbf900..a9bb29fbe9be 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "parameters": { "properties": { "vnetName": "vNet123", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json index ea667fb25012..6c79e7b45837 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP_Webhook", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "repetitionName": "000001", "requestHistoryName": "08586611142732800686", "resourceGroupName": "test-resource-group", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json index 0196156a4ce6..366b2f42704e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP_Webhook", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "repetitionName": "000001", "resourceGroupName": "test-resource-group", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json index cbb06fa52efa..22aa9a74e0d4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json index 4f68e49471ca..d60aa5e57039 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json index faeb7ccbdc2c..4d9ed7e96b21 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json index 57b5220b57eb..5d8bc8ff02c8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "for_each", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "repetitionName": "000000", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json index 22fef3f594b3..46119e07065d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "for_each", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json index 1d4f8de64f59..4f8fcddddd40 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json index b6e3e5e7f7f2..241252c8ff75 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json index 454f7104d38f..bf291ddaa028 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json index d11b4d5b2c0c..cad16a690593 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json index 07af784ea664..7ac03e92156f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json index f2ac86f334d1..09ca493c1393 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json index 3f0fdae2ab09..aac1d403d861 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "historyName": "08586676746934337772206998657CU22", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json index fa669ad0e4d6..0b93121c2a61 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "testTriggerName", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json index 6e4bb5110f1b..6680d415790d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "historyName": "testHistoryName", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", @@ -11,7 +11,7 @@ "responses": { "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json index 175018b15b61..368eba01f49f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "manual", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json index 5eb252da337b..62a1177e0847 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "testTrigger", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json index a5816b0ba460..07c3ba1a9e0c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json index 69b48c814f48..9b869c660815 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "manual", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json index 03adf041130c..4b142702b7c8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "recurrence", @@ -11,7 +11,7 @@ "200": {}, "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json index de593ef9daf5..248788bb65a4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "versionId": "08586676824806722526", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json index 24e97f67cb3a..034c6fc1ebf3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json index 791ba13ac34e..30ed3471bf05 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "keyType": { "keyType": "Primary" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json index 21faff295dab..e976b1f420f9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-06-01-preview", + "api-version": "2026-03-01-preview", "location": "brazilsouth", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json index c6ab30be6e52..8f7379dfe91b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json @@ -6664,8 +6664,8 @@ } }, "x-ms-examples": { - "List App Service plan silos": { - "$ref": "./examples/ListServerFarmSilos.json" + "Get all silos for an App Service plan": { + "$ref": "./examples/ServerFarmSilos_ListServerFarmSilos.json" } }, "x-ms-pageable": { @@ -6722,8 +6722,8 @@ } }, "x-ms-examples": { - "Get App Service plan silo": { - "$ref": "./examples/GetServerFarmSilo.json" + "Get a specific silo for an App Service plan": { + "$ref": "./examples/ServerFarmSilos_GetServerFarmSilo.json" } } }, @@ -6801,8 +6801,8 @@ } }, "x-ms-examples": { - "Create or update App Service plan silo": { - "$ref": "./examples/CreateOrUpdateServerFarmSilo.json" + "Create or update an App Service plan silo": { + "$ref": "./examples/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json" } }, "x-ms-long-running-operation-options": { @@ -6870,8 +6870,8 @@ } }, "x-ms-examples": { - "Delete App Service plan silo": { - "$ref": "./examples/DeleteServerFarmSilo.json" + "Delete an App Service plan silo": { + "$ref": "./examples/ServerFarmSilos_DeleteServerFarmSilo.json" } }, "x-ms-long-running-operation-options": { @@ -16202,6 +16202,11 @@ "$ref": "#/definitions/DefaultErrorResponse" } } + }, + "x-ms-examples": { + "Get the current Last Known Good revision for a web app": { + "$ref": "./examples/LastKnownGoods_GetLastKnownGood.json" + } } } }, @@ -16252,6 +16257,11 @@ "$ref": "#/definitions/DefaultErrorResponse" } } + }, + "x-ms-examples": { + "Mark the current site state as Last Known Good": { + "$ref": "./examples/LastKnownGoods_MarkLastKnownGood.json" + } } } }, @@ -16443,8 +16453,8 @@ } }, "x-ms-examples": { - "Get managed traffic configuration": { - "$ref": "./examples/GetManagedTrafficConfig.json" + "Get the managed traffic configuration for a web app": { + "$ref": "./examples/ManagedTrafficConfigs_GetManagedTrafficConfig.json" } } }, @@ -16511,8 +16521,8 @@ } }, "x-ms-examples": { - "Create or update managed traffic configuration": { - "$ref": "./examples/CreateOrUpdateManagedTrafficConfig.json" + "Create or update the managed traffic configuration for a web app": { + "$ref": "./examples/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json" } } } @@ -19263,8 +19273,8 @@ } }, "x-ms-examples": { - "List site silos": { - "$ref": "./examples/ListSiteSilos.json" + "Get all silos for a web app": { + "$ref": "./examples/SiteSilos_ListSiteSilos.json" } }, "x-ms-pageable": { @@ -19321,8 +19331,8 @@ } }, "x-ms-examples": { - "Get site silo": { - "$ref": "./examples/GetSiteSilo.json" + "Get a specific silo for a web app": { + "$ref": "./examples/SiteSilos_GetSiteSilo.json" } } }, @@ -19400,8 +19410,8 @@ } }, "x-ms-examples": { - "Create or update site silo": { - "$ref": "./examples/CreateOrUpdateSiteSilo.json" + "Create or update a web app silo": { + "$ref": "./examples/SiteSilos_CreateOrUpdateSiteSilo.json" } }, "x-ms-long-running-operation-options": { @@ -19469,8 +19479,8 @@ } }, "x-ms-examples": { - "Delete site silo": { - "$ref": "./examples/DeleteSiteSilo.json" + "Delete a web app silo": { + "$ref": "./examples/SiteSilos_DeleteSiteSilo.json" } }, "x-ms-long-running-operation-options": { From 7d8939c1ba28227208989f7fee9074e4e9c67b99 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Wed, 22 Apr 2026 16:28:11 -0700 Subject: [PATCH 04/10] fix examples --- .../2026-06-01-preview/AIGateways_CreateOrUpdate.json | 2 +- .../examples/2026-06-01-preview/AIGateways_Delete.json | 2 +- .../examples/2026-06-01-preview/AIGateways_Get.json | 2 +- .../2026-06-01-preview/AIGateways_ListByResourceGroup.json | 2 +- .../2026-06-01-preview/AIGateways_ListBySubscription.json | 2 +- .../examples/2026-06-01-preview/AIGateways_Patch.json | 2 +- .../examples/2026-06-01-preview/AnalyzeCustomHostName.json | 2 +- .../2026-06-01-preview/AnalyzeCustomHostNameSlot.json | 2 +- ...Environments_ApproveOrRejectPrivateEndpointConnection.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json | 2 +- .../AppServiceEnvironments_CreateOrUpdate.json | 2 +- .../AppServiceEnvironments_CreateOrUpdateMultiRolePool.json | 2 +- ...ments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json | 2 +- .../AppServiceEnvironments_CreateOrUpdateWorkerPool.json | 2 +- ...nts_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_Delete.json | 2 +- ...ppServiceEnvironments_DeletePrivateEndpointConnection.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_Get.json | 2 +- ...ppServiceEnvironments_GetAseV3NetworkingConfiguration.json | 2 +- .../AppServiceEnvironments_GetDiagnosticsItem.json | 2 +- .../AppServiceEnvironments_GetMultiRolePool.json | 2 +- .../AppServiceEnvironments_GetPrivateEndpointConnection.json | 2 +- ...pServiceEnvironments_GetPrivateEndpointConnectionList.json | 2 +- .../AppServiceEnvironments_GetPrivateLinkResources.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json | 2 +- .../AppServiceEnvironments_GetWorkerPool.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_List.json | 2 +- .../AppServiceEnvironments_ListAppServicePlans.json | 2 +- .../AppServiceEnvironments_ListByResourceGroup.json | 2 +- .../AppServiceEnvironments_ListCapacities.json | 2 +- .../AppServiceEnvironments_ListDiagnostics.json | 2 +- ...AppServiceEnvironments_ListMultiRoleMetricDefinitions.json | 2 +- ...vironments_ListMultiRolePoolInstanceMetricDefinitions.json | 2 +- .../AppServiceEnvironments_ListMultiRolePoolSkus.json | 2 +- .../AppServiceEnvironments_ListMultiRolePools.json | 2 +- .../AppServiceEnvironments_ListMultiRoleUsages.json | 2 +- .../AppServiceEnvironments_ListOperations.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_ListUsages.json | 2 +- .../AppServiceEnvironments_ListWebApps.json | 2 +- ...AppServiceEnvironments_ListWebWorkerMetricDefinitions.json | 2 +- .../AppServiceEnvironments_ListWebWorkerUsages.json | 2 +- ...eEnvironments_ListWorkerPoolInstanceMetricDefinitions.json | 2 +- .../AppServiceEnvironments_ListWorkerPoolSkus.json | 2 +- .../AppServiceEnvironments_ListWorkerPools.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_Reboot.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_Resume.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_Suspend.json | 2 +- ...pServiceEnvironments_TestUpgradeAvailableNotification.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_Update.json | 2 +- ...pServiceEnvironments_UpdateAseNetworkingConfiguration.json | 2 +- .../2026-06-01-preview/AppServiceEnvironments_Upgrade.json | 2 +- .../examples/2026-06-01-preview/ApplySlotConfig.json | 2 +- .../ApproveRejectSitePrivateEndpointConnection.json | 2 +- .../ApproveRejectSitePrivateEndpointConnectionSlot.json | 2 +- ...pproveRejectSitePrivateEndpointConnection_StaticSites.json | 2 +- .../AppService/examples/2026-06-01-preview/BackupWebApp.json | 2 +- .../AppService/examples/2026-06-01-preview/CloneWebApp.json | 4 ++-- .../examples/2026-06-01-preview/CloneWebAppSlot.json | 4 ++-- .../2026-06-01-preview/CreateOrUpdateAppServicePlan.json | 2 +- .../2026-06-01-preview/CreateOrUpdateCertificate.json | 2 +- .../CreateOrUpdateFunctionAppFlexConsumption.json | 4 ++-- .../CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json | 4 ++-- .../2026-06-01-preview/CreateOrUpdateSiteCertificate.json | 2 +- .../2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json | 2 +- .../examples/2026-06-01-preview/CreateOrUpdateStaticSite.json | 2 +- .../CreateOrUpdateStaticSiteAppSettings.json | 2 +- .../2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json | 2 +- .../CreateOrUpdateStaticSiteBuildAppSettings.json | 2 +- .../CreateOrUpdateStaticSiteBuildDatabaseConnection.json | 2 +- .../CreateOrUpdateStaticSiteBuildFunctionAppSettings.json | 2 +- .../CreateOrUpdateStaticSiteCustomDomain.json | 2 +- .../CreateOrUpdateStaticSiteDatabaseConnection.json | 2 +- .../CreateOrUpdateStaticSiteFunctionAppSettings.json | 2 +- .../examples/2026-06-01-preview/CreateOrUpdateWebApp.json | 4 ++-- .../examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json | 4 ++-- .../2026-06-01-preview/CreateUserRolesInvitationLink.json | 2 +- .../examples/2026-06-01-preview/DeleteAppServicePlan.json | 2 +- .../DeleteAseCustomDnsSuffixConfiguration.json | 2 +- .../examples/2026-06-01-preview/DeleteCertificate.json | 2 +- .../2026-06-01-preview/DeleteDeployWorkflowArtifacts.json | 2 +- .../examples/2026-06-01-preview/DeleteSiteCertificate.json | 2 +- .../2026-06-01-preview/DeleteSiteCertificateSlot.json | 2 +- .../DeleteSitePrivateEndpointConnection.json | 2 +- .../DeleteSitePrivateEndpointConnectionSlot.json | 2 +- .../DeleteSitePrivateEndpointConnection_StaticSites.json | 2 +- .../examples/2026-06-01-preview/DeleteStaticSite.json | 2 +- .../examples/2026-06-01-preview/DeleteStaticSiteBuild.json | 2 +- .../DeleteStaticSiteBuildDatabaseConnection.json | 2 +- .../2026-06-01-preview/DeleteStaticSiteCustomDomain.json | 2 +- .../DeleteStaticSiteDatabaseConnection.json | 2 +- .../examples/2026-06-01-preview/DeleteStaticSiteUser.json | 2 +- .../AppService/examples/2026-06-01-preview/DeleteWebApp.json | 2 +- .../examples/2026-06-01-preview/DeleteWebAppBackup.json | 2 +- .../examples/2026-06-01-preview/DeleteWebAppSlot.json | 2 +- .../examples/2026-06-01-preview/DetachStaticSite.json | 2 +- .../DetachUserProvidedFunctionAppFromStaticSite.json | 2 +- .../DetachUserProvidedFunctionAppFromStaticSiteBuild.json | 2 +- .../2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json | 2 +- .../Diagnostics_ExecuteSiteAnalysisSlot.json | 2 +- .../Diagnostics_ExecuteSiteAnalysisSlot_Slot.json | 2 +- .../Diagnostics_ExecuteSiteAnalysis_Slot.json | 2 +- .../2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json | 2 +- .../Diagnostics_ExecuteSiteDetectorSlot.json | 2 +- .../Diagnostics_ExecuteSiteDetectorSlot_Slot.json | 2 +- .../Diagnostics_ExecuteSiteDetector_Slot.json | 2 +- .../Diagnostics_GetHostingEnvironmentDetectorResponse.json | 2 +- .../2026-06-01-preview/Diagnostics_GetSiteAnalysis.json | 2 +- .../2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json | 2 +- .../Diagnostics_GetSiteAnalysisSlot_Slot.json | 2 +- .../2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json | 2 +- .../2026-06-01-preview/Diagnostics_GetSiteDetector.json | 2 +- .../Diagnostics_GetSiteDetectorResponse.json | 2 +- .../Diagnostics_GetSiteDetectorResponseSlot.json | 2 +- .../Diagnostics_GetSiteDetectorResponseSlot_Slot.json | 2 +- .../Diagnostics_GetSiteDetectorResponse_Slot.json | 2 +- .../2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json | 2 +- .../Diagnostics_GetSiteDetectorSlot_Slot.json | 2 +- .../2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json | 2 +- .../Diagnostics_GetSiteDiagnosticCategory.json | 2 +- .../Diagnostics_GetSiteDiagnosticCategorySlot.json | 2 +- .../Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json | 2 +- .../Diagnostics_GetSiteDiagnosticCategory_Slot.json | 2 +- .../Diagnostics_ListHostingEnvironmentDetectorResponses.json | 2 +- .../2026-06-01-preview/Diagnostics_ListSiteAnalyses.json | 2 +- .../2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json | 2 +- .../Diagnostics_ListSiteAnalysesSlot_Slot.json | 2 +- .../2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json | 2 +- .../Diagnostics_ListSiteDetectorResponses.json | 2 +- .../Diagnostics_ListSiteDetectorResponsesSlot.json | 2 +- .../Diagnostics_ListSiteDetectorResponsesSlot_Slot.json | 2 +- .../Diagnostics_ListSiteDetectorResponses_Slot.json | 2 +- .../2026-06-01-preview/Diagnostics_ListSiteDetectors.json | 2 +- .../2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json | 2 +- .../Diagnostics_ListSiteDetectorsSlot_Slot.json | 2 +- .../Diagnostics_ListSiteDetectors_Slot.json | 2 +- .../Diagnostics_ListSiteDiagnosticCategories.json | 2 +- .../Diagnostics_ListSiteDiagnosticCategoriesSlot.json | 2 +- .../Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json | 2 +- .../Diagnostics_ListSiteDiagnosticCategories_Slot.json | 2 +- .../2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json | 2 +- .../examples/2026-06-01-preview/GetAllStaticSites.json | 2 +- .../examples/2026-06-01-preview/GetAppServicePlan.json | 2 +- .../GetAseCustomDnsSuffixConfiguration.json | 2 +- .../2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json | 2 +- .../examples/2026-06-01-preview/GetCertificate.json | 2 +- .../examples/2026-06-01-preview/GetDeletedWebApp.json | 2 +- .../2026-06-01-preview/GetDeletedWebAppByLocation.json | 2 +- .../2026-06-01-preview/GetDeletedWebAppSnapshots.json | 2 +- .../examples/2026-06-01-preview/GetFunctionAppStacks.json | 2 +- .../2026-06-01-preview/GetFunctionAppStacksForLocation.json | 2 +- .../GetInboundNetworkDependenciesEndpoints.json | 2 +- .../GetKeyVaultReferencesForAppSetting.json | 2 +- .../GetKeyVaultReferencesForAppSettingSlot.json | 2 +- .../GetKeyVaultReferencesForAppSettings.json | 2 +- .../GetKeyVaultReferencesForAppSettingsSlot.json | 2 +- .../2026-06-01-preview/GetLinkedBackendForStaticSite.json | 2 +- .../GetLinkedBackendForStaticSiteBuild.json | 2 +- .../2026-06-01-preview/GetLinkedBackendsForStaticSite.json | 2 +- .../GetLinkedBackendsForStaticSiteBuild.json | 2 +- .../GetOutboundNetworkDependenciesEndpoints.json | 2 +- .../2026-06-01-preview/GetPublishingCredentialsPolicy.json | 2 +- .../GetPublishingCredentialsPolicySlot.json | 2 +- .../GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json | 2 +- .../GetPublishingCredentialsPolicy_GetFtpAllowed.json | 2 +- .../2026-06-01-preview/GetResourceHealthMetadataBySite.json | 2 +- .../GetResourceHealthMetadataBySite_Slot.json | 2 +- .../examples/2026-06-01-preview/GetSiteCertificate.json | 2 +- .../examples/2026-06-01-preview/GetSiteCertificateSlot.json | 2 +- .../AppService/examples/2026-06-01-preview/GetSiteConfig.json | 2 +- .../examples/2026-06-01-preview/GetSiteDeploymentStatus.json | 2 +- .../2026-06-01-preview/GetSiteDeploymentStatusSlot.json | 2 +- .../examples/2026-06-01-preview/GetSiteInstanceInfo.json | 2 +- .../examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json | 2 +- .../2026-06-01-preview/GetSitePrivateEndpointConnection.json | 2 +- .../GetSitePrivateEndpointConnectionList.json | 2 +- .../GetSitePrivateEndpointConnectionSlot.json | 2 +- .../GetSitePrivateEndpointConnection_StaticSites.json | 2 +- .../2026-06-01-preview/GetSitePrivateLinkResources.json | 2 +- .../2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json | 2 +- .../GetSitePrivateLinkResources_WebApps.json | 2 +- .../AppService/examples/2026-06-01-preview/GetStaticSite.json | 2 +- .../examples/2026-06-01-preview/GetStaticSiteBasicAuth.json | 2 +- .../examples/2026-06-01-preview/GetStaticSiteBuild.json | 2 +- .../GetStaticSiteBuildDatabaseConnection.json | 2 +- .../GetStaticSiteBuildDatabaseConnectionWithDetails.json | 2 +- .../GetStaticSiteBuildDatabaseConnections.json | 2 +- .../GetStaticSiteBuildDatabaseConnectionsWithDetails.json | 2 +- .../examples/2026-06-01-preview/GetStaticSiteBuilds.json | 2 +- .../2026-06-01-preview/GetStaticSiteCustomDomain.json | 2 +- .../2026-06-01-preview/GetStaticSiteCustomDomains.json | 2 +- .../2026-06-01-preview/GetStaticSiteDatabaseConnection.json | 2 +- .../GetStaticSiteDatabaseConnectionWithDetails.json | 2 +- .../2026-06-01-preview/GetStaticSiteDatabaseConnections.json | 2 +- .../GetStaticSiteDatabaseConnectionsWithDetails.json | 2 +- .../examples/2026-06-01-preview/GetStaticSites.json | 2 +- .../GetSubscriptionOperationWithAsyncResponse.json | 2 +- .../examples/2026-06-01-preview/GetUsagesInLocation.json | 2 +- .../GetUserProvidedFunctionAppForStaticSite.json | 2 +- .../GetUserProvidedFunctionAppForStaticSiteBuild.json | 2 +- .../GetUserProvidedFunctionAppsForStaticSite.json | 2 +- .../GetUserProvidedFunctionAppsForStaticSiteBuild.json | 2 +- .../AppService/examples/2026-06-01-preview/GetWebApp.json | 2 +- .../examples/2026-06-01-preview/GetWebAppBackup.json | 2 +- .../2026-06-01-preview/GetWebAppBackupWithSecrets.json | 2 +- .../AppService/examples/2026-06-01-preview/GetWebAppSlot.json | 2 +- .../examples/2026-06-01-preview/GetWebAppStacks.json | 2 +- .../2026-06-01-preview/GetWebAppStacksForLocation.json | 2 +- .../2026-06-01-preview/GetWebSiteNetworkTraceOperation.json | 2 +- .../GetWebSiteNetworkTraceOperation_Slot.json | 2 +- .../GetWebSiteNetworkTraceOperation_SlotV2.json | 2 +- .../GetWebSiteNetworkTraceOperation_V2.json | 2 +- .../examples/2026-06-01-preview/GetWebSiteNetworkTraces.json | 2 +- .../GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json | 2 +- .../2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json | 2 +- .../2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json | 2 +- .../AppService/examples/2026-06-01-preview/GetWorkflow.json | 2 +- .../examples/2026-06-01-preview/GetWorkflow_Slot.json | 2 +- .../2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json | 2 +- .../examples/2026-06-01-preview/KubeEnvironments_Delete.json | 4 ++-- .../examples/2026-06-01-preview/KubeEnvironments_Get.json | 2 +- .../KubeEnvironments_ListByResourceGroup.json | 2 +- .../KubeEnvironments_ListBySubscription.json | 2 +- .../examples/2026-06-01-preview/KubeEnvironments_Update.json | 2 +- .../examples/2026-06-01-preview/LinkBackendToStaticSite.json | 2 +- .../2026-06-01-preview/LinkBackendToStaticSiteBuild.json | 2 +- .../examples/2026-06-01-preview/ListAppServicePlans.json | 2 +- .../ListAppServicePlansByResourceGroup.json | 2 +- .../examples/2026-06-01-preview/ListAppSettings.json | 2 +- .../examples/2026-06-01-preview/ListAseRegions.json | 2 +- .../examples/2026-06-01-preview/ListAuthSettings.json | 2 +- .../examples/2026-06-01-preview/ListAuthSettingsV2.json | 2 +- .../examples/2026-06-01-preview/ListCertificates.json | 2 +- .../2026-06-01-preview/ListCertificatesByResourceGroup.json | 2 +- .../examples/2026-06-01-preview/ListCustomHostNameSites.json | 2 +- .../2026-06-01-preview/ListCustomSpecificHostNameSites.json | 2 +- .../2026-06-01-preview/ListDeletedWebAppsByLocation.json | 2 +- .../examples/2026-06-01-preview/ListOperations.json | 2 +- .../2026-06-01-preview/ListPublishingCredentialsPolicies.json | 2 +- .../ListPublishingCredentialsPoliciesSlot.json | 2 +- .../ListResourceHealthMetadataByResourceGroup.json | 2 +- .../2026-06-01-preview/ListResourceHealthMetadataBySite.json | 2 +- .../ListResourceHealthMetadataBySite_Slot.json | 2 +- .../ListResourceHealthMetadataBySubscription.json | 2 +- .../examples/2026-06-01-preview/ListSiteBackupsSlot.json | 2 +- .../ListSiteCertificatesByResourceGroup.json | 2 +- .../ListSiteCertificatesByResourceGroupSlot.json | 2 +- .../examples/2026-06-01-preview/ListSiteDeploymentStatus.json | 2 +- .../2026-06-01-preview/ListSiteDeploymentStatusSlot.json | 2 +- .../examples/2026-06-01-preview/ListSlotBackups.json | 2 +- .../2026-06-01-preview/ListStaticSiteAppSettings.json | 2 +- .../examples/2026-06-01-preview/ListStaticSiteBasicAuth.json | 2 +- .../2026-06-01-preview/ListStaticSiteBuildAppSettings.json | 2 +- .../ListStaticSiteBuildFunctionAppSettings.json | 2 +- .../2026-06-01-preview/ListStaticSiteBuildFunctions.json | 2 +- .../2026-06-01-preview/ListStaticSiteConfiguredRoles.json | 2 +- .../2026-06-01-preview/ListStaticSiteFunctionAppSettings.json | 2 +- .../examples/2026-06-01-preview/ListStaticSiteFunctions.json | 2 +- .../examples/2026-06-01-preview/ListStaticSiteSecrets.json | 2 +- .../examples/2026-06-01-preview/ListStaticSiteUsers.json | 2 +- .../examples/2026-06-01-preview/ListWebAppBackups.json | 2 +- .../examples/2026-06-01-preview/ListWebAppConfigurations.json | 2 +- .../examples/2026-06-01-preview/ListWebAppSlots.json | 2 +- .../AppService/examples/2026-06-01-preview/ListWebApps.json | 2 +- .../2026-06-01-preview/ListWebAppsByResourceGroup.json | 2 +- .../AppService/examples/2026-06-01-preview/ListWorkflows.json | 2 +- .../ListWorkflowsConfigurationConnections.json | 2 +- .../ListWorkflowsConfigurationConnections_Slot.json | 2 +- .../examples/2026-06-01-preview/ListWorkflows_Slot.json | 2 +- .../examples/2026-06-01-preview/PatchAppServicePlan.json | 2 +- .../examples/2026-06-01-preview/PatchCertificate.json | 2 +- .../examples/2026-06-01-preview/PatchSiteCertificate.json | 2 +- .../examples/2026-06-01-preview/PatchSiteCertificateSlot.json | 2 +- .../examples/2026-06-01-preview/PatchStaticSite.json | 2 +- .../PatchStaticSiteBuildDatabaseConnection.json | 2 +- .../2026-06-01-preview/PatchStaticSiteDatabaseConnection.json | 2 +- .../2026-06-01-preview/PostDeployWorkflowArtifacts.json | 2 +- .../2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json | 2 +- .../RegisterUserProvidedFunctionAppWithStaticSite.json | 2 +- .../RegisterUserProvidedFunctionAppWithStaticSiteBuild.json | 2 +- .../examples/2026-06-01-preview/ResetStaticSiteApiKey.json | 2 +- .../examples/2026-06-01-preview/RestoreWebAppBackup.json | 4 ++-- .../2026-06-01-preview/StartWebSiteNetworkTraceOperation.json | 2 +- .../StartWebSiteNetworkTraceOperation_Slot.json | 2 +- .../StartWebSiteNetworkTraceOperation_StartNetworkTrace.json | 2 +- ...artWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json | 2 +- .../examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json | 2 +- .../examples/2026-06-01-preview/StaticSiteZipDeploy.json | 2 +- .../examples/2026-06-01-preview/StopWebSiteNetworkTrace.json | 2 +- .../2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json | 2 +- .../StopWebSiteNetworkTrace_StopNetworkTrace.json | 2 +- .../StopWebSiteNetworkTrace_StopNetworkTraceSlot.json | 2 +- .../2026-06-01-preview/UnlinkBackendFromStaticSite.json | 2 +- .../2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json | 2 +- .../examples/2026-06-01-preview/UpdateAppSettings.json | 2 +- .../UpdateAseCustomDnsSuffixConfiguration.json | 2 +- .../examples/2026-06-01-preview/UpdateAuthSettings.json | 2 +- .../examples/2026-06-01-preview/UpdateAuthSettingsV2.json | 2 +- .../2026-06-01-preview/UpdateAzureStorageAccounts.json | 2 +- .../examples/2026-06-01-preview/UpdateMachineKey.json | 2 +- .../2026-06-01-preview/UpdatePublishingCredentialsPolicy.json | 2 +- .../UpdatePublishingCredentialsPolicySlot.json | 2 +- ...ePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json | 2 +- .../UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json | 2 +- .../examples/2026-06-01-preview/UpdateSiteConfig.json | 2 +- .../examples/2026-06-01-preview/UpdateStaticSiteUser.json | 2 +- .../AppService/examples/2026-06-01-preview/UpdateWebApp.json | 4 ++-- .../examples/2026-06-01-preview/UpdateWebAppSlot.json | 4 ++-- .../ValidateLinkedBackendForStaticSite.json | 2 +- .../ValidateLinkedBackendForStaticSiteBuild.json | 2 +- .../2026-06-01-preview/ValidateStaticSiteCustomDomain.json | 2 +- .../2026-06-01-preview/VerifyHostingEnvironmentVnet.json | 2 +- .../WorkflowRunActionRepetitionsRequestHistories_Get.json | 2 +- .../WorkflowRunActionRepetitionsRequestHistories_List.json | 2 +- .../2026-06-01-preview/WorkflowRunActionRepetitions_Get.json | 2 +- .../2026-06-01-preview/WorkflowRunActionRepetitions_List.json | 2 +- .../WorkflowRunActionRepetitions_ListExpressionTraces.json | 2 +- .../WorkflowRunActionScopeRepetitions_Get.json | 2 +- .../WorkflowRunActionScopeRepetitions_List.json | 2 +- .../examples/2026-06-01-preview/WorkflowRunActions_Get.json | 2 +- .../examples/2026-06-01-preview/WorkflowRunActions_List.json | 2 +- .../WorkflowRunActions_ListExpressionTraces.json | 2 +- .../examples/2026-06-01-preview/WorkflowRuns_Cancel.json | 2 +- .../examples/2026-06-01-preview/WorkflowRuns_Get.json | 2 +- .../examples/2026-06-01-preview/WorkflowRuns_List.json | 2 +- .../2026-06-01-preview/WorkflowTriggerHistories_Get.json | 2 +- .../2026-06-01-preview/WorkflowTriggerHistories_List.json | 2 +- .../2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json | 4 ++-- .../examples/2026-06-01-preview/WorkflowTriggers_Get.json | 2 +- .../2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json | 2 +- .../examples/2026-06-01-preview/WorkflowTriggers_List.json | 2 +- .../2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json | 2 +- .../examples/2026-06-01-preview/WorkflowTriggers_Run.json | 4 ++-- .../examples/2026-06-01-preview/WorkflowVersions_Get.json | 2 +- .../examples/2026-06-01-preview/WorkflowVersions_List.json | 2 +- .../2026-06-01-preview/Workflows_RegenerateAccessKey.json | 2 +- .../examples/2026-06-01-preview/Workflows_Validate.json | 2 +- .../examples/AIGateways_CreateOrUpdate.json | 2 +- .../2026-06-01-preview/examples/AIGateways_Delete.json | 2 +- .../preview/2026-06-01-preview/examples/AIGateways_Get.json | 2 +- .../examples/AIGateways_ListByResourceGroup.json | 2 +- .../examples/AIGateways_ListBySubscription.json | 2 +- .../preview/2026-06-01-preview/examples/AIGateways_Patch.json | 2 +- .../2026-06-01-preview/examples/AnalyzeCustomHostName.json | 2 +- .../examples/AnalyzeCustomHostNameSlot.json | 2 +- ...Environments_ApproveOrRejectPrivateEndpointConnection.json | 2 +- .../examples/AppServiceEnvironments_ChangeVnet.json | 2 +- .../examples/AppServiceEnvironments_CreateOrUpdate.json | 2 +- .../AppServiceEnvironments_CreateOrUpdateMultiRolePool.json | 2 +- ...ments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json | 2 +- .../AppServiceEnvironments_CreateOrUpdateWorkerPool.json | 2 +- ...nts_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json | 2 +- .../examples/AppServiceEnvironments_Delete.json | 2 +- ...ppServiceEnvironments_DeletePrivateEndpointConnection.json | 2 +- .../examples/AppServiceEnvironments_Get.json | 2 +- ...ppServiceEnvironments_GetAseV3NetworkingConfiguration.json | 2 +- .../examples/AppServiceEnvironments_GetDiagnosticsItem.json | 2 +- .../examples/AppServiceEnvironments_GetMultiRolePool.json | 2 +- .../AppServiceEnvironments_GetPrivateEndpointConnection.json | 2 +- ...pServiceEnvironments_GetPrivateEndpointConnectionList.json | 2 +- .../AppServiceEnvironments_GetPrivateLinkResources.json | 2 +- .../examples/AppServiceEnvironments_GetVipInfo.json | 2 +- .../examples/AppServiceEnvironments_GetWorkerPool.json | 2 +- .../examples/AppServiceEnvironments_List.json | 2 +- .../examples/AppServiceEnvironments_ListAppServicePlans.json | 2 +- .../examples/AppServiceEnvironments_ListByResourceGroup.json | 2 +- .../examples/AppServiceEnvironments_ListCapacities.json | 2 +- .../examples/AppServiceEnvironments_ListDiagnostics.json | 2 +- ...AppServiceEnvironments_ListMultiRoleMetricDefinitions.json | 2 +- ...vironments_ListMultiRolePoolInstanceMetricDefinitions.json | 2 +- .../AppServiceEnvironments_ListMultiRolePoolSkus.json | 2 +- .../examples/AppServiceEnvironments_ListMultiRolePools.json | 2 +- .../examples/AppServiceEnvironments_ListMultiRoleUsages.json | 2 +- .../examples/AppServiceEnvironments_ListOperations.json | 2 +- .../examples/AppServiceEnvironments_ListUsages.json | 2 +- .../examples/AppServiceEnvironments_ListWebApps.json | 2 +- ...AppServiceEnvironments_ListWebWorkerMetricDefinitions.json | 2 +- .../examples/AppServiceEnvironments_ListWebWorkerUsages.json | 2 +- ...eEnvironments_ListWorkerPoolInstanceMetricDefinitions.json | 2 +- .../examples/AppServiceEnvironments_ListWorkerPoolSkus.json | 2 +- .../examples/AppServiceEnvironments_ListWorkerPools.json | 2 +- .../examples/AppServiceEnvironments_Reboot.json | 2 +- .../examples/AppServiceEnvironments_Resume.json | 2 +- .../examples/AppServiceEnvironments_Suspend.json | 2 +- ...pServiceEnvironments_TestUpgradeAvailableNotification.json | 2 +- .../examples/AppServiceEnvironments_Update.json | 2 +- ...pServiceEnvironments_UpdateAseNetworkingConfiguration.json | 2 +- .../examples/AppServiceEnvironments_Upgrade.json | 2 +- .../preview/2026-06-01-preview/examples/ApplySlotConfig.json | 2 +- .../examples/ApproveRejectSitePrivateEndpointConnection.json | 2 +- .../ApproveRejectSitePrivateEndpointConnectionSlot.json | 2 +- ...pproveRejectSitePrivateEndpointConnection_StaticSites.json | 2 +- .../preview/2026-06-01-preview/examples/BackupWebApp.json | 2 +- .../preview/2026-06-01-preview/examples/CloneWebApp.json | 4 ++-- .../preview/2026-06-01-preview/examples/CloneWebAppSlot.json | 4 ++-- .../examples/CreateOrUpdateAppServicePlan.json | 2 +- .../examples/CreateOrUpdateCertificate.json | 2 +- .../examples/CreateOrUpdateFunctionAppFlexConsumption.json | 4 ++-- .../CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json | 4 ++-- .../examples/CreateOrUpdateSiteCertificate.json | 2 +- .../examples/CreateOrUpdateSiteCertificateSlot.json | 2 +- .../2026-06-01-preview/examples/CreateOrUpdateStaticSite.json | 2 +- .../examples/CreateOrUpdateStaticSiteAppSettings.json | 2 +- .../examples/CreateOrUpdateStaticSiteBasicAuth.json | 2 +- .../examples/CreateOrUpdateStaticSiteBuildAppSettings.json | 2 +- .../CreateOrUpdateStaticSiteBuildDatabaseConnection.json | 2 +- .../CreateOrUpdateStaticSiteBuildFunctionAppSettings.json | 2 +- .../examples/CreateOrUpdateStaticSiteCustomDomain.json | 2 +- .../examples/CreateOrUpdateStaticSiteDatabaseConnection.json | 2 +- .../examples/CreateOrUpdateStaticSiteFunctionAppSettings.json | 2 +- .../2026-06-01-preview/examples/CreateOrUpdateWebApp.json | 4 ++-- .../2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json | 4 ++-- .../examples/CreateUserRolesInvitationLink.json | 2 +- .../2026-06-01-preview/examples/DeleteAppServicePlan.json | 2 +- .../examples/DeleteAseCustomDnsSuffixConfiguration.json | 2 +- .../2026-06-01-preview/examples/DeleteCertificate.json | 2 +- .../examples/DeleteDeployWorkflowArtifacts.json | 2 +- .../2026-06-01-preview/examples/DeleteSiteCertificate.json | 2 +- .../examples/DeleteSiteCertificateSlot.json | 2 +- .../examples/DeleteSitePrivateEndpointConnection.json | 2 +- .../examples/DeleteSitePrivateEndpointConnectionSlot.json | 2 +- .../DeleteSitePrivateEndpointConnection_StaticSites.json | 2 +- .../preview/2026-06-01-preview/examples/DeleteStaticSite.json | 2 +- .../2026-06-01-preview/examples/DeleteStaticSiteBuild.json | 2 +- .../examples/DeleteStaticSiteBuildDatabaseConnection.json | 2 +- .../examples/DeleteStaticSiteCustomDomain.json | 2 +- .../examples/DeleteStaticSiteDatabaseConnection.json | 2 +- .../2026-06-01-preview/examples/DeleteStaticSiteUser.json | 2 +- .../preview/2026-06-01-preview/examples/DeleteWebApp.json | 2 +- .../2026-06-01-preview/examples/DeleteWebAppBackup.json | 2 +- .../preview/2026-06-01-preview/examples/DeleteWebAppSlot.json | 2 +- .../preview/2026-06-01-preview/examples/DetachStaticSite.json | 2 +- .../examples/DetachUserProvidedFunctionAppFromStaticSite.json | 2 +- .../DetachUserProvidedFunctionAppFromStaticSiteBuild.json | 2 +- .../examples/Diagnostics_ExecuteSiteAnalysis.json | 2 +- .../examples/Diagnostics_ExecuteSiteAnalysisSlot.json | 2 +- .../examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json | 2 +- .../examples/Diagnostics_ExecuteSiteAnalysis_Slot.json | 2 +- .../examples/Diagnostics_ExecuteSiteDetector.json | 2 +- .../examples/Diagnostics_ExecuteSiteDetectorSlot.json | 2 +- .../examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json | 2 +- .../examples/Diagnostics_ExecuteSiteDetector_Slot.json | 2 +- .../Diagnostics_GetHostingEnvironmentDetectorResponse.json | 2 +- .../examples/Diagnostics_GetSiteAnalysis.json | 2 +- .../examples/Diagnostics_GetSiteAnalysisSlot.json | 2 +- .../examples/Diagnostics_GetSiteAnalysisSlot_Slot.json | 2 +- .../examples/Diagnostics_GetSiteAnalysis_Slot.json | 2 +- .../examples/Diagnostics_GetSiteDetector.json | 2 +- .../examples/Diagnostics_GetSiteDetectorResponse.json | 2 +- .../examples/Diagnostics_GetSiteDetectorResponseSlot.json | 2 +- .../Diagnostics_GetSiteDetectorResponseSlot_Slot.json | 2 +- .../examples/Diagnostics_GetSiteDetectorResponse_Slot.json | 2 +- .../examples/Diagnostics_GetSiteDetectorSlot.json | 2 +- .../examples/Diagnostics_GetSiteDetectorSlot_Slot.json | 2 +- .../examples/Diagnostics_GetSiteDetector_Slot.json | 2 +- .../examples/Diagnostics_GetSiteDiagnosticCategory.json | 2 +- .../examples/Diagnostics_GetSiteDiagnosticCategorySlot.json | 2 +- .../Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json | 2 +- .../examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json | 2 +- .../Diagnostics_ListHostingEnvironmentDetectorResponses.json | 2 +- .../examples/Diagnostics_ListSiteAnalyses.json | 2 +- .../examples/Diagnostics_ListSiteAnalysesSlot.json | 2 +- .../examples/Diagnostics_ListSiteAnalysesSlot_Slot.json | 2 +- .../examples/Diagnostics_ListSiteAnalyses_Slot.json | 2 +- .../examples/Diagnostics_ListSiteDetectorResponses.json | 2 +- .../examples/Diagnostics_ListSiteDetectorResponsesSlot.json | 2 +- .../Diagnostics_ListSiteDetectorResponsesSlot_Slot.json | 2 +- .../examples/Diagnostics_ListSiteDetectorResponses_Slot.json | 2 +- .../examples/Diagnostics_ListSiteDetectors.json | 2 +- .../examples/Diagnostics_ListSiteDetectorsSlot.json | 2 +- .../examples/Diagnostics_ListSiteDetectorsSlot_Slot.json | 2 +- .../examples/Diagnostics_ListSiteDetectors_Slot.json | 2 +- .../examples/Diagnostics_ListSiteDiagnosticCategories.json | 2 +- .../Diagnostics_ListSiteDiagnosticCategoriesSlot.json | 2 +- .../Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json | 2 +- .../Diagnostics_ListSiteDiagnosticCategories_Slot.json | 2 +- .../examples/GenerateStaticSiteWorkflowPreview.json | 2 +- .../2026-06-01-preview/examples/GetAllStaticSites.json | 2 +- .../2026-06-01-preview/examples/GetAppServicePlan.json | 2 +- .../examples/GetAseCustomDnsSuffixConfiguration.json | 2 +- .../examples/GetAuthSettingsV2WithoutSecrets.json | 2 +- .../preview/2026-06-01-preview/examples/GetCertificate.json | 2 +- .../preview/2026-06-01-preview/examples/GetDeletedWebApp.json | 2 +- .../examples/GetDeletedWebAppByLocation.json | 2 +- .../examples/GetDeletedWebAppSnapshots.json | 2 +- .../2026-06-01-preview/examples/GetFunctionAppStacks.json | 2 +- .../examples/GetFunctionAppStacksForLocation.json | 2 +- .../examples/GetInboundNetworkDependenciesEndpoints.json | 2 +- .../examples/GetKeyVaultReferencesForAppSetting.json | 2 +- .../examples/GetKeyVaultReferencesForAppSettingSlot.json | 2 +- .../examples/GetKeyVaultReferencesForAppSettings.json | 2 +- .../examples/GetKeyVaultReferencesForAppSettingsSlot.json | 2 +- .../examples/GetLinkedBackendForStaticSite.json | 2 +- .../examples/GetLinkedBackendForStaticSiteBuild.json | 2 +- .../examples/GetLinkedBackendsForStaticSite.json | 2 +- .../examples/GetLinkedBackendsForStaticSiteBuild.json | 2 +- .../examples/GetOutboundNetworkDependenciesEndpoints.json | 2 +- .../examples/GetPublishingCredentialsPolicy.json | 2 +- .../examples/GetPublishingCredentialsPolicySlot.json | 2 +- .../GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json | 2 +- .../GetPublishingCredentialsPolicy_GetFtpAllowed.json | 2 +- .../examples/GetResourceHealthMetadataBySite.json | 2 +- .../examples/GetResourceHealthMetadataBySite_Slot.json | 2 +- .../2026-06-01-preview/examples/GetSiteCertificate.json | 2 +- .../2026-06-01-preview/examples/GetSiteCertificateSlot.json | 2 +- .../preview/2026-06-01-preview/examples/GetSiteConfig.json | 2 +- .../2026-06-01-preview/examples/GetSiteDeploymentStatus.json | 2 +- .../examples/GetSiteDeploymentStatusSlot.json | 2 +- .../2026-06-01-preview/examples/GetSiteInstanceInfo.json | 2 +- .../2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json | 2 +- .../examples/GetSitePrivateEndpointConnection.json | 2 +- .../examples/GetSitePrivateEndpointConnectionList.json | 2 +- .../examples/GetSitePrivateEndpointConnectionSlot.json | 2 +- .../GetSitePrivateEndpointConnection_StaticSites.json | 2 +- .../examples/GetSitePrivateLinkResources.json | 2 +- .../examples/GetSitePrivateLinkResourcesSlot.json | 2 +- .../examples/GetSitePrivateLinkResources_WebApps.json | 2 +- .../preview/2026-06-01-preview/examples/GetStaticSite.json | 2 +- .../2026-06-01-preview/examples/GetStaticSiteBasicAuth.json | 2 +- .../2026-06-01-preview/examples/GetStaticSiteBuild.json | 2 +- .../examples/GetStaticSiteBuildDatabaseConnection.json | 2 +- .../GetStaticSiteBuildDatabaseConnectionWithDetails.json | 2 +- .../examples/GetStaticSiteBuildDatabaseConnections.json | 2 +- .../GetStaticSiteBuildDatabaseConnectionsWithDetails.json | 2 +- .../2026-06-01-preview/examples/GetStaticSiteBuilds.json | 2 +- .../examples/GetStaticSiteCustomDomain.json | 2 +- .../examples/GetStaticSiteCustomDomains.json | 2 +- .../examples/GetStaticSiteDatabaseConnection.json | 2 +- .../examples/GetStaticSiteDatabaseConnectionWithDetails.json | 2 +- .../examples/GetStaticSiteDatabaseConnections.json | 2 +- .../examples/GetStaticSiteDatabaseConnectionsWithDetails.json | 2 +- .../preview/2026-06-01-preview/examples/GetStaticSites.json | 2 +- .../examples/GetSubscriptionOperationWithAsyncResponse.json | 2 +- .../2026-06-01-preview/examples/GetUsagesInLocation.json | 2 +- .../examples/GetUserProvidedFunctionAppForStaticSite.json | 2 +- .../GetUserProvidedFunctionAppForStaticSiteBuild.json | 2 +- .../examples/GetUserProvidedFunctionAppsForStaticSite.json | 2 +- .../GetUserProvidedFunctionAppsForStaticSiteBuild.json | 2 +- .../preview/2026-06-01-preview/examples/GetWebApp.json | 2 +- .../preview/2026-06-01-preview/examples/GetWebAppBackup.json | 2 +- .../examples/GetWebAppBackupWithSecrets.json | 2 +- .../preview/2026-06-01-preview/examples/GetWebAppSlot.json | 2 +- .../preview/2026-06-01-preview/examples/GetWebAppStacks.json | 2 +- .../examples/GetWebAppStacksForLocation.json | 2 +- .../examples/GetWebSiteNetworkTraceOperation.json | 2 +- .../examples/GetWebSiteNetworkTraceOperation_Slot.json | 2 +- .../examples/GetWebSiteNetworkTraceOperation_SlotV2.json | 2 +- .../examples/GetWebSiteNetworkTraceOperation_V2.json | 2 +- .../2026-06-01-preview/examples/GetWebSiteNetworkTraces.json | 2 +- .../GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json | 2 +- .../examples/GetWebSiteNetworkTraces_Slot.json | 2 +- .../examples/GetWebSiteNetworkTraces_SlotV2.json | 2 +- .../preview/2026-06-01-preview/examples/GetWorkflow.json | 2 +- .../preview/2026-06-01-preview/examples/GetWorkflow_Slot.json | 2 +- .../examples/KubeEnvironments_CreateOrUpdate.json | 2 +- .../2026-06-01-preview/examples/KubeEnvironments_Delete.json | 4 ++-- .../2026-06-01-preview/examples/KubeEnvironments_Get.json | 2 +- .../examples/KubeEnvironments_ListByResourceGroup.json | 2 +- .../examples/KubeEnvironments_ListBySubscription.json | 2 +- .../2026-06-01-preview/examples/KubeEnvironments_Update.json | 2 +- .../2026-06-01-preview/examples/LinkBackendToStaticSite.json | 2 +- .../examples/LinkBackendToStaticSiteBuild.json | 2 +- .../2026-06-01-preview/examples/ListAppServicePlans.json | 2 +- .../examples/ListAppServicePlansByResourceGroup.json | 2 +- .../preview/2026-06-01-preview/examples/ListAppSettings.json | 2 +- .../preview/2026-06-01-preview/examples/ListAseRegions.json | 2 +- .../preview/2026-06-01-preview/examples/ListAuthSettings.json | 2 +- .../2026-06-01-preview/examples/ListAuthSettingsV2.json | 2 +- .../preview/2026-06-01-preview/examples/ListCertificates.json | 2 +- .../examples/ListCertificatesByResourceGroup.json | 2 +- .../2026-06-01-preview/examples/ListCustomHostNameSites.json | 2 +- .../examples/ListCustomSpecificHostNameSites.json | 2 +- .../examples/ListDeletedWebAppsByLocation.json | 2 +- .../preview/2026-06-01-preview/examples/ListOperations.json | 2 +- .../examples/ListPublishingCredentialsPolicies.json | 2 +- .../examples/ListPublishingCredentialsPoliciesSlot.json | 2 +- .../examples/ListResourceHealthMetadataByResourceGroup.json | 2 +- .../examples/ListResourceHealthMetadataBySite.json | 2 +- .../examples/ListResourceHealthMetadataBySite_Slot.json | 2 +- .../examples/ListResourceHealthMetadataBySubscription.json | 2 +- .../2026-06-01-preview/examples/ListSiteBackupsSlot.json | 2 +- .../examples/ListSiteCertificatesByResourceGroup.json | 2 +- .../examples/ListSiteCertificatesByResourceGroupSlot.json | 2 +- .../2026-06-01-preview/examples/ListSiteDeploymentStatus.json | 2 +- .../examples/ListSiteDeploymentStatusSlot.json | 2 +- .../preview/2026-06-01-preview/examples/ListSlotBackups.json | 2 +- .../examples/ListStaticSiteAppSettings.json | 2 +- .../2026-06-01-preview/examples/ListStaticSiteBasicAuth.json | 2 +- .../examples/ListStaticSiteBuildAppSettings.json | 2 +- .../examples/ListStaticSiteBuildFunctionAppSettings.json | 2 +- .../examples/ListStaticSiteBuildFunctions.json | 2 +- .../examples/ListStaticSiteConfiguredRoles.json | 2 +- .../examples/ListStaticSiteFunctionAppSettings.json | 2 +- .../2026-06-01-preview/examples/ListStaticSiteFunctions.json | 2 +- .../2026-06-01-preview/examples/ListStaticSiteSecrets.json | 2 +- .../2026-06-01-preview/examples/ListStaticSiteUsers.json | 2 +- .../2026-06-01-preview/examples/ListWebAppBackups.json | 2 +- .../2026-06-01-preview/examples/ListWebAppConfigurations.json | 2 +- .../preview/2026-06-01-preview/examples/ListWebAppSlots.json | 2 +- .../preview/2026-06-01-preview/examples/ListWebApps.json | 2 +- .../examples/ListWebAppsByResourceGroup.json | 2 +- .../preview/2026-06-01-preview/examples/ListWorkflows.json | 2 +- .../examples/ListWorkflowsConfigurationConnections.json | 2 +- .../examples/ListWorkflowsConfigurationConnections_Slot.json | 2 +- .../2026-06-01-preview/examples/ListWorkflows_Slot.json | 2 +- .../2026-06-01-preview/examples/PatchAppServicePlan.json | 2 +- .../preview/2026-06-01-preview/examples/PatchCertificate.json | 2 +- .../2026-06-01-preview/examples/PatchSiteCertificate.json | 2 +- .../2026-06-01-preview/examples/PatchSiteCertificateSlot.json | 2 +- .../preview/2026-06-01-preview/examples/PatchStaticSite.json | 2 +- .../examples/PatchStaticSiteBuildDatabaseConnection.json | 2 +- .../examples/PatchStaticSiteDatabaseConnection.json | 2 +- .../examples/PostDeployWorkflowArtifacts.json | 2 +- .../examples/PostDeployWorkflowArtifactsSlot.json | 2 +- .../RegisterUserProvidedFunctionAppWithStaticSite.json | 2 +- .../RegisterUserProvidedFunctionAppWithStaticSiteBuild.json | 2 +- .../2026-06-01-preview/examples/ResetStaticSiteApiKey.json | 2 +- .../2026-06-01-preview/examples/RestoreWebAppBackup.json | 4 ++-- .../examples/StartWebSiteNetworkTraceOperation.json | 2 +- .../examples/StartWebSiteNetworkTraceOperation_Slot.json | 2 +- .../StartWebSiteNetworkTraceOperation_StartNetworkTrace.json | 2 +- ...artWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json | 2 +- .../2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json | 2 +- .../2026-06-01-preview/examples/StaticSiteZipDeploy.json | 2 +- .../2026-06-01-preview/examples/StopWebSiteNetworkTrace.json | 2 +- .../examples/StopWebSiteNetworkTrace_Slot.json | 2 +- .../examples/StopWebSiteNetworkTrace_StopNetworkTrace.json | 2 +- .../StopWebSiteNetworkTrace_StopNetworkTraceSlot.json | 2 +- .../examples/UnlinkBackendFromStaticSite.json | 2 +- .../examples/UnlinkBackendFromStaticSiteBuild.json | 2 +- .../2026-06-01-preview/examples/UpdateAppSettings.json | 2 +- .../examples/UpdateAseCustomDnsSuffixConfiguration.json | 2 +- .../2026-06-01-preview/examples/UpdateAuthSettings.json | 2 +- .../2026-06-01-preview/examples/UpdateAuthSettingsV2.json | 2 +- .../examples/UpdateAzureStorageAccounts.json | 2 +- .../preview/2026-06-01-preview/examples/UpdateMachineKey.json | 2 +- .../examples/UpdatePublishingCredentialsPolicy.json | 2 +- .../examples/UpdatePublishingCredentialsPolicySlot.json | 2 +- ...ePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json | 2 +- .../UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json | 2 +- .../preview/2026-06-01-preview/examples/UpdateSiteConfig.json | 2 +- .../2026-06-01-preview/examples/UpdateStaticSiteUser.json | 2 +- .../preview/2026-06-01-preview/examples/UpdateWebApp.json | 4 ++-- .../preview/2026-06-01-preview/examples/UpdateWebAppSlot.json | 4 ++-- .../examples/ValidateLinkedBackendForStaticSite.json | 2 +- .../examples/ValidateLinkedBackendForStaticSiteBuild.json | 2 +- .../examples/ValidateStaticSiteCustomDomain.json | 2 +- .../examples/VerifyHostingEnvironmentVnet.json | 2 +- .../WorkflowRunActionRepetitionsRequestHistories_Get.json | 2 +- .../WorkflowRunActionRepetitionsRequestHistories_List.json | 2 +- .../examples/WorkflowRunActionRepetitions_Get.json | 2 +- .../examples/WorkflowRunActionRepetitions_List.json | 2 +- .../WorkflowRunActionRepetitions_ListExpressionTraces.json | 2 +- .../examples/WorkflowRunActionScopeRepetitions_Get.json | 2 +- .../examples/WorkflowRunActionScopeRepetitions_List.json | 2 +- .../2026-06-01-preview/examples/WorkflowRunActions_Get.json | 2 +- .../2026-06-01-preview/examples/WorkflowRunActions_List.json | 2 +- .../examples/WorkflowRunActions_ListExpressionTraces.json | 2 +- .../2026-06-01-preview/examples/WorkflowRuns_Cancel.json | 2 +- .../preview/2026-06-01-preview/examples/WorkflowRuns_Get.json | 2 +- .../2026-06-01-preview/examples/WorkflowRuns_List.json | 2 +- .../examples/WorkflowTriggerHistories_Get.json | 2 +- .../examples/WorkflowTriggerHistories_List.json | 2 +- .../examples/WorkflowTriggerHistories_Resubmit.json | 4 ++-- .../2026-06-01-preview/examples/WorkflowTriggers_Get.json | 2 +- .../examples/WorkflowTriggers_GetSchemaJson.json | 2 +- .../2026-06-01-preview/examples/WorkflowTriggers_List.json | 2 +- .../examples/WorkflowTriggers_ListCallbackUrl.json | 2 +- .../2026-06-01-preview/examples/WorkflowTriggers_Run.json | 4 ++-- .../2026-06-01-preview/examples/WorkflowVersions_Get.json | 2 +- .../2026-06-01-preview/examples/WorkflowVersions_List.json | 2 +- .../examples/Workflows_RegenerateAccessKey.json | 2 +- .../2026-06-01-preview/examples/Workflows_Validate.json | 2 +- 672 files changed, 696 insertions(+), 696 deletions(-) diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json index 427efaad1438..8427da59c935 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_CreateOrUpdate.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1", "resource": { "properties": {}, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json index c0e4b6a89dc7..5307572af8dd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Delete.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json index 90e427821a73..e2b685611485 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Get.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json index ec8294d03988..7324c866a2c1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListByResourceGroup.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json index 794d4700925f..f2c519bcb6ff 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_ListBySubscription.json @@ -3,7 +3,7 @@ "title": "ListAiGatewaysBySubscription", "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json index e24945117376..b2adc6e80d4b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AIGateways_Patch.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1", "properties": { "tags": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json index ac3ade6f9023..28d409a04254 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostName.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json index 8aa228fe28a6..6ad17beb6d3f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AnalyzeCustomHostNameSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json index bdad092df2be..acc1d63cc76b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json index e133aef7786c..3c960d1041f8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ChangeVnet.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "vnetInfo": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json index 58507447c631..d1d3fe9a3db0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "hostingEnvironmentEnvelope": { "kind": "Asev3", "location": "South Central US", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json index 746710039630..d5fad44ec5c9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "multiRolePoolEnvelope": { "properties": { "workerCount": 3, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json index 5d022c249f32..6fa089a58fc1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "multiRolePoolEnvelope": { "properties": { "workerCount": 3, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json index 7452ba4b9b13..ac727054c2cf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json index 5a331e3bd804..fa9ad3d72cee 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json index 4499c712ad78..b4b34ce5e7fd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Delete.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json index feccbff76356..36f295770f58 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_DeletePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json index dc1038735eb7..a7f15f123f8b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json index ef47dcc02ee9..bfa062b1e629 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json index bd98d3e2ddaf..b3684e4ece5f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetDiagnosticsItem.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticsName": "test-diagnostic", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json index 0dcaae19abe3..4c7de5d4c983 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json index b5fe06e8948f..626234dc0f1e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json index c44f791d1328..98bd8d67866c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateEndpointConnectionList.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json index e664d7a84632..c7e2528eaf55 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetPrivateLinkResources.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json index 1170e76d004b..9c3624b218c1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetVipInfo.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json index 83d875d4f321..4afd38955b5e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_GetWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "workerPool1" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json index 642ad6f1528e..a41e60a5e89a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_List.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json index 5da2a93be642..8d55a2dcc05f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListAppServicePlans.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json index 7c672193663b..337eb5150f44 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json index ed687e58d312..940a0f0ffec4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListCapacities.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json index c8129d9eb83a..6475b28f5e61 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListDiagnostics.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json index fdc50821d3e5..d1e49bfd3ae9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json index 4e3ef0874d91..f7adaba1bb8d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instance": "10.7.1.8", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json index f15916c3ffa9..129eb0e1af75 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePoolSkus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json index 4ddd69a3351e..469c77812ded 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRolePools.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json index c809f5120bff..9a96716709aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListMultiRoleUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json index b97d8269ba4e..1db82783e992 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListOperations.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json index a1ed105eb6d1..4739fd8e6f6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json index 00afe44dafea..301f1c6f8b24 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebApps.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json index cb6377d92673..2148129492aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "0" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json index 8e60943625ce..7a71b322cd5a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWebWorkerUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "0" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json index a987f8354b6c..d0d1626c69ad 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instance": "10.8.0.7", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json index 0f57ba4510af..680913a1bbea 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPoolSkus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "workerPool1" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json index e7340e69bf3f..48ac77e241b4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_ListWorkerPools.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json index a204382c11b6..838521a33d6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Reboot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json index e8c14d5fc92e..7d0133d301bd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Resume.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json index 567d05f8d80e..364b8965a96a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Suspend.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json index dcf3b529d806..d05c40658a25 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_TestUpgradeAvailableNotification.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleHostingEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json index 8d517d34eaf8..a3f638801da6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Update.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "hostingEnvironmentEnvelope": { "properties": { "frontEndScaleFactor": 20, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json index fb477539eb31..acaad5e72d61 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "aseNetworkingConfiguration": { "properties": { "ftpEnabled": true, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json index 5fa952c0a017..47cd15493a6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/AppServiceEnvironments_Upgrade.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleHostingEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json index b954966d07a2..df0398d1c265 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApplySlotConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slotSwapEntity": { "preserveVnet": true, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json index b4cbc945b6b4..8ebe7741412a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json index 580180b23db0..7a6fa475cb98 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json index f47cf2f34825..bcfc5b41c895 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ApproveRejectSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json index f065d190c995..4820324c09f3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/BackupWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "request": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json index 1c14b78d3763..097f7a1d1a17 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -256,7 +256,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json index 846dc1740f15..f6b6299a79d3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CloneWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -257,7 +257,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json index 3d368785135e..8358d01a6375 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appServicePlan": { "kind": "app", "location": "East US", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json index 9b4d367fe7c7..781e5c91e111 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json index 4a9aa2b4d679..e4fa62fe722d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumption.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "functionapp,linux", @@ -344,7 +344,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json index 16dbb08c6891..5e430573cdc6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "functionapp,linux", @@ -373,7 +373,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json index b690adc26358..cd8388b9500c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json index d0bff32e651c..17b4e95c1776 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json index 4de065aea990..e3fcf02c960d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteEnvelope": { "location": "West US 2", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json index 5783f672072e..33fa5a62293a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json index faa06f5277b8..c5926c9dd0d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "basicAuthEnvelope": { "properties": { "applicableEnvironmentsMode": "AllEnvironments", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json index 623e50cbd54f..b374b667d8a8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json index 544fec80e6a5..17765ad3b120 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json index 4b4f97223e74..87a63cc5c8de 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json index 1e435fbb6bab..9152749f1212 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "staticSiteCustomDomainRequestPropertiesEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json index 60a45c4e0a97..50456dc10a4a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json index 535b20da9036..456b740a6a3d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateStaticSiteFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json index aaded9c688a9..c5cdb36a4f15 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -255,7 +255,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json index 14d5d49ad0aa..a59f6c014ba4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateOrUpdateWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -246,7 +246,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json index 5a91d6255309..12e519f33ec1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/CreateUserRolesInvitationLink.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteUserRolesInvitationEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json index 413b00dc40f1..934a0510bd21 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json index 951740b37683..67361ec324f7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json index fd3398522ed8..fc48ebee3168 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json index a13edb2b1d48..3292f05f41d8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteDeployWorkflowArtifacts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowArtifacts": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json index 8cbce425a7aa..df8394e97b4b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json index 553b8e65786f..85b27095f910 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json index df88dc325b09..1ca1bb39099c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json index 065b7a1a4d34..00cae422c483 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json index 7590d82f3bac..d186aabb8f5b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json index 0ffa049a02a1..49e7e72a52e1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json index 503347df844d..0cf1d1be5a5f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json index 848a9ce1299b..34adeaf2df20 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json index 8c73b4d2b880..69f512174034 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json index f97cb727ce2d..d27f6d38e771 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json index e4cdb54d3097..53c881edbb6a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteStaticSiteUser.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "authprovider": "aad", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json index 7034eca9195d..f1b8eaa2bf44 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json index c55213dfc53d..bc7a1e2d908b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json index 736fc64b4b11..23f031e3c839 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DeleteWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json index 5451cbe355e2..005615ff7d65 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json index bce7e778a0d8..f628e6b3eceb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json index 7076bef08871..f798dc3988f1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/DetachUserProvidedFunctionAppFromStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json index 0ba41ca60056..2bb5eaced008 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json index 1648ef7ad14f..a92f8372c11e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json index 6ae336ec6bf5..3efff0116483 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json index c19a7efcded3..e24527df4220 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteAnalysis_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json index 8a664df9d36f..8cfd432fcc69 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json index e53a16cb7eef..95d83eb0c348 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json index e83f0acdc4cf..caa05848a61b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetectorSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json index a214efe53e6b..ce070f8f6fff 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ExecuteSiteDetector_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json index 1d694b9dcc18..54f9e8535817 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetHostingEnvironmentDetectorResponse.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAppServiceEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json index 62b16480902a..817e5a599251 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json index 68e2be370b8e..755ce8980756 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json index 5713921fb76a..0a9bfdb6d3bf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysisSlot_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json index 1a79eeae1656..3f241886fae2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteAnalysis_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json index f613a792d3f6..ba4ddc71de9f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json index a6ab3c4aeccf..d9b8cb27706d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json index 27a660cf2e90..dd11df514be4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json index 32782df2cae6..fab8f1317bbc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponseSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json index 9ab7105958db..38d11dc54db2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorResponse_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json index 9849ccb2445c..159e415eb429 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json index cd80cc6c53b3..bf8e77a704a3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetectorSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json index 4cc80a8ba971..b77d4dbf7189 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDetector_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json index bd3780216fbb..c89d977493fa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json index bd722b380ee6..c8bed91c2806 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json index b57f96108cba..0fba7233aca2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json index 35a82c113ac5..809c1214f9f5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_GetSiteDiagnosticCategory_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json index 5f36849eb78e..7d5ed2e726e0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListHostingEnvironmentDetectorResponses.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAppServiceEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json index af8f377c246d..40c74e396a76 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json index 4429f8181617..5ad4e4761bb5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json index e7e43014b88d..60b7341fd77b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalysesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json index 3e295aeeb3de..eecc8c970ff4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteAnalyses_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json index 5381747f42b4..4afa317e0dc1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json index 0f729bc4ca99..05e2bcf60476 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json index 89682e145b92..9e891a583f52 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json index 2af63e524dab..0f68c7cc3fd2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorResponses_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json index 174a09833a31..868640a47080 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json index 1d672d26eb09..037de0e59388 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json index 516eb5d7a126..2d1d20d679c5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectorsSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json index 2d699901b395..6e4e98f18ed7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDetectors_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json index 04d79e514903..620548a50aef 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json index f0f1308f45e9..39da6827e8fe 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json index 688acde1bc4d..ae63133ffcfb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json index 9f129cc54793..775cdbc18914 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Diagnostics_ListSiteDiagnosticCategories_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json index 892e1ba3af9b..eecc12b531ca 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GenerateStaticSiteWorkflowPreview.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US 2", "staticSitesWorkflowPreviewRequest": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json index 6536045d8be9..311810dd2e43 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAllStaticSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json index cdd145efdf49..74db79e7c3cb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json index cbff19850577..33e9f96d40de 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json index b66d39756d93..5921b265747c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetAuthSettingsV2WithoutSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json index 74029e1b0e0f..f02d0515b777 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json index 916944965cad..3f56816eb69c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebApp.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deletedSiteId": "9", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json index 8595bf520183..4d00b1ef1ad3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppByLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deletedSiteId": "9", "location": "West US 2", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json index accacf14cef8..554b075fe4ab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetDeletedWebAppSnapshots.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deletedSiteId": "9", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json index 2d654fdf5c95..c4df1f198211 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacks.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json index 836607fd0bf7..4c88e0ccb0ba 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetFunctionAppStacksForLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "westus" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json index 0bff34a77bd2..75b8591b0b14 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetInboundNetworkDependenciesEndpoints.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAse", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json index 61ee968d1a63..7d1a87315ecc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSetting.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettingKey": "setting", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json index 8c3a6c95cce7..cfefeb520191 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettingKey": "setting", "resourceGroupName": "testrg123", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json index eabd307ba656..66ea6edda287 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json index 531d531bff39..8cb62625a988 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetKeyVaultReferencesForAppSettingsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json index e99adff15227..46ebeaa1d1a5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json index 11e70c071e7d..a07e5a9e1c6b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json index 572a238cbbab..6b27158725d5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json index 4ded38bf265e..c34c3f4bec32 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetLinkedBackendsForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json index 25081326b295..509b5415a6bf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetOutboundNetworkDependenciesEndpoints.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAse", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json index bd434bcbcdf2..72613449fbd3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json index bb991268d6ee..bf88b60fa69c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json index 18e7c81b84f2..4202f784c05f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json index b3e297543295..402e1cbfdcdc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetPublishingCredentialsPolicy_GetFtpAllowed.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json index 8a85e31836b7..15abbb5b39cd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "metadataName": "default", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json index d655067d365f..1a37caa1de21 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetResourceHealthMetadataBySite_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "metadataName": "default", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json index 2d0ea5021f20..efd05b3a09fc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json index bfd1b47ace1e..12afdcc16f9c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json index 839492800f28..28fe48d43182 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json index 2fad104135f9..1bad1186bff6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json index 5fb3748a3dce..25ab49b3af10 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteDeploymentStatusSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json index d52937437a4f..96ad3e29b4f1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instanceId": "134987120", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json index 0fee6e3bb085..bb8c0e70603f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSiteInstanceInfo_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instanceId": "134987120", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json index e7197a03278b..591b6de7214a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json index 8d613dd49510..93fff1442688 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionList.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json index 65024f71f8e5..e16152ab2258 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json index 8bacf2962f72..ec5ccbcbb61c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json index 0321f08bb093..83d9a9dbcb3f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json index 52597ce6faab..bbac13c8735d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResourcesSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json index 55026a448074..8a6bd4993362 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSitePrivateLinkResources_WebApps.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json index ae06848e8d0e..d813f46f90a8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json index ed4b50793a99..e530b7ec83b4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "basicAuthName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json index ac8e8e0ae6a9..014b1556e51f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json index 6811e8496d59..5bc9c725aa35 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json index 7cf84befa150..e38e44515bd0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json index df60c0f0e217..bb1c989f4cdf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json index f3c1375b8851..da9c9ec57680 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuildDatabaseConnectionsWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json index 9bf59f6117aa..9530f9d4e209 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteBuilds.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json index f9be1f97c63f..b9ce2f6b6fbb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json index 99b223fd0bfd..1344c9aef228 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteCustomDomains.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json index d692785cdc88..4a39530ee3b5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json index 633dbd5ae0f2..c8247271d4e4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json index 6ff5dc4ad6d0..8f167c85b18c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json index baa7bbc33864..2be29e5da388 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSiteDatabaseConnectionsWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json index 0fa9430369f7..2e9bda077b56 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetStaticSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json index de1ec550be18..2367315ba428 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetSubscriptionOperationWithAsyncResponse.json @@ -1,7 +1,7 @@ { "parameters": { "operationId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab5d5", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json index ed4d59430ab6..c7b18f2993cb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUsagesInLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US", "quotaType": "regional", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json index 53748ae257c9..42732b98db5a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json index d6c60714b47a..448e2b2d2662 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json index 441147411b7a..1983f93fe0eb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json index 996f80d7c9d4..260e4afcc792 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetUserProvidedFunctionAppsForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json index 830a60bcc13f..12d828b27405 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json index a7ffc4412181..834c6375f44a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json index bea9e24dcbf9..304109d53521 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppBackupWithSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json index ef0d8938d641..20718f83c2b5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json index 7161cab1966f..3c67121e1114 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacks.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json index c7021df618dc..c8f3eb45da6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebAppStacksForLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "westus" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json index 2a947b4d90a3..3e3660ce7a85 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json index de6ee3ff4af4..65d3baa2fcdb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_Slot.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json index 832d6cdb71a5..2b5800ec71aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_SlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json index 2439bf62e0ed..81e649b97485 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraceOperation_V2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json index 5acbe8761bc2..607365bd0c81 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json index a87a30022f5f..ea580bedde83 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json index c14309b7247d..bd20d9f5d97c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_Slot.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json index 21770d48efc8..3c82e78fec9b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWebSiteNetworkTraces_SlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json index f9628b29194a..c2803170d857 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json index ce60e355a67e..93a4cbfe688d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/GetWorkflow_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json index 9598091e195b..c760f64a2bca 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_CreateOrUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testkubeenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json index ed49c0b7d0da..7d6f7886e53b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Delete.json @@ -1,7 +1,7 @@ { "parameters": { "name": "examplekenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" @@ -15,7 +15,7 @@ "200": {}, "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-03-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-06-01-preview" } }, "204": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json index 72fecfb96341..afebc690e2b2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "jlaw-demo1", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json index a1edaf6a05b6..bad3795e7801 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListByResourceGroup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "Samplek8se", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "examplerg", "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json index 05b441fe8385..14d33eb3ef82 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_ListBySubscription.json @@ -1,7 +1,7 @@ { "parameters": { "name": "examplekenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "examplerg", "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json index 268442f85c1d..1a0c4b662bff 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/KubeEnvironments_Update.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testkubeenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json index c63314c9768e..a4634d6133e3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "staticSiteLinkedBackendEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json index 169f2f9acec5..b8086db931e7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LinkBackendToStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json index 78522eb84c8c..26b4f80443d3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlans.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json index 2256122b7d4a..9d8e7e3f371e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppServicePlansByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json index d68c3ae3ebfa..531cceea3ac9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json index f7a90ab6d95c..d4fac703a407 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAseRegions.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json index ab6d645e3a7a..887e517949db 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json index 5c30be78c989..742fd05d3fa8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListAuthSettingsV2.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json index 2893cce04cbc..f11aba68ec84 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificates.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json index aedc0408af9e..153a80cb2f0f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCertificatesByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json index 3c01f9e6a02f..cd2d7f587847 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomHostNameSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "00000000-0000-0000-0000-000000000000" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json index 9f343433f090..aace4de56d23 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListCustomSpecificHostNameSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "hostname": "www.example.com", "subscriptionId": "00000000-0000-0000-0000-000000000000" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json index 804a026cb6d3..c6258ca4e5d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListDeletedWebAppsByLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US 2", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json index 30e5104a458b..fc929cf5d52c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListOperations.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json index 6e3d6f453964..66c1d54ef9a4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPolicies.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json index 63b17d49ca69..03f728fd60fe 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListPublishingCredentialsPoliciesSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json index 357a6f61256e..8e6e6dbdc45b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json index 86527f6ee0b4..b7dc070edd5f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json index 96baac08b12a..30de074d9fed 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySite_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json index 7d020af287c5..5beb23ad5274 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListResourceHealthMetadataBySubscription.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json index f45256f7a520..0b864006c702 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteBackupsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json index 4c5a89e6852e..1854faf495a2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json index 648bb181c48d..571db4938b81 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteCertificatesByResourceGroupSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json index 1913ad42d187..d696ac2ed2fd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json index 7a236b91656e..eca1f3506efc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSiteDeploymentStatusSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json index 93ee32d3e8e2..3dd09c94bd45 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListSlotBackups.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json index 590ab91d4c26..b514ba68f432 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json index fd0474c29010..e1302907cd5b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json index c3f63d2f691a..a50b2220b0e4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json index 22f9a4196958..ad47acabc5e7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json index 7f421309b684..820d783eea64 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteBuildFunctions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json index c62ac83f319a..687000b8fa21 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteConfiguredRoles.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json index 9cf19359dae5..a5f4baea5a49 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json index a25a5c6668e8..a3e8e48a55d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteFunctions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json index 21ea987897bb..97c11cbc9dd3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json index 943ac950d04b..9f52c5b5561e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListStaticSiteUsers.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "authprovider": "all", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json index a3da819c91a7..63c01fe1af0c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppBackups.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json index 46373bad0ca7..f4689ef1b9e1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppConfigurations.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json index fdf7b773c076..27beb8001b76 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppSlots.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", "name": "sitef6141", - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json index 6033df8c8bd2..b53e37230638 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebApps.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json index 443b28e3e364..44f9503fc5ef 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWebAppsByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json index 31205eb6cee5..a05bcb93afe2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json index aa2a17e3bd83..127e62be5191 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "configurationName": "connections", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json index f49223d2856b..51cf90ecd9bc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflowsConfigurationConnections_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "configurationName": "connections", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json index c9a10f3ec32b..2c8d32a3d8a0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ListWorkflows_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json index 41ff38517ef0..b073c6aabdf6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appServicePlan": { "kind": "app", "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json index e77ae0c2caf0..6bc46c34db28 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json index 8749a95a160d..3b1648e2038b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json index 5eb51ccddb14..b87133e66356 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json index 3fa316aef33d..09550ca8006d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json index 05bf4b9bf318..c04b2a10e925 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json index 85948117181f..03227132a40f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PatchStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json index 6bfe8dbf72f9..b4775ef5cef8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifacts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowArtifacts": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json index 1d5ce85f7b20..ac760a6b0b8e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/PostDeployWorkflowArtifactsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "testsSlot", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json index c94ed7f2367c..6ce5704fbf53 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "functionAppName": "testFunctionApp", "isForced": "true", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json index 339f4e781c73..f843f6e9aae3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "functionAppName": "testFunctionApp", "isForced": "true", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json index 65d6558423b3..b88069aedf40 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ResetStaticSiteApiKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resetPropertiesEnvelope": { "properties": { "repositoryToken": "repoToken123", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json index 068e874b887b..1626f8ae9d10 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/RestoreWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "123244", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", @@ -31,7 +31,7 @@ "200": {}, "202": { "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json index d08027b16512..9b3ac2e9f48d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json index fbd8aa61f9ee..2cf71f333f17 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json index 0142c081a280..2fc5568b87cf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json index e4a69871e4b9..78009fa07354 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json index 63bdcd1ceb28..0286c04986fb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteBuildZipDeploy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "staticSiteZipDeploymentEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json index 063d84a95da4..bcc3e664ff54 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StaticSiteZipDeploy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteZipDeploymentEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json index 112508c217d4..a6236a898734 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json index 2805fa6b5594..b269c323ec12 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json index 51f520450cd8..d538f56ca34e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json index f1f5e80b1cbf..dde74288e554 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json index 65ba920f246a..cb1f45a5b4fc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "cleanUpAuth": true, "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json index cdcf2b16173e..67378dc910fd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UnlinkBackendFromStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "cleanUpAuth": true, "environmentName": "12", "linkedBackendName": "testBackend", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json index 6931aefb0c76..8b2f94ef4d52 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "Setting1": "Value1", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json index 4d6f9f2f76d4..bf2ef1a8a847 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "customDnsSuffixConfiguration": { "properties": { "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json index 4ba845970fbb..320434b61d46 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteAuthSettings": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json index 8c9f96f91b40..cf8485ceb5fc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAuthSettingsV2.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteAuthSettingsV2": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json index 5947ea770da9..e38309cfe970 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateAzureStorageAccounts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "azureStorageAccounts": { "properties": { "account1": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json index 221f9b79073b..51a103019aad 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateMachineKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "contoso", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json index cacef8a4499c..8b766094a772 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json index 27d609eb77c6..02c876361162 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json index 7aae966734ab..6e8a0dd17f03 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json index 2ce3b47739b8..14483fe08e9f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json index 9eb890e4d12e..fec7772d7330 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateSiteConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteConfig": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json index df2155526dfe..08adec1eda1b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateStaticSiteUser.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "authprovider": "aad", "resourceGroupName": "rg", "staticSiteUserEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json index d06fc8607ae8..e4f925c9b508 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "properties": { @@ -252,7 +252,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json index 9c0b4ebb4e8c..d65c2ebcbab7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/UpdateWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "properties": { @@ -243,7 +243,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json index 923187beb563..5d3f9e8e8852 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "staticSiteLinkedBackendEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json index 94190fb00651..e32540b8eb75 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateLinkedBackendForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json index 92776989aeed..896a977d24df 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ValidateStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "staticSiteCustomDomainRequestPropertiesEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json index a9bb29fbe9be..1a25b0bbf900 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/VerifyHostingEnvironmentVnet.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "parameters": { "properties": { "vnetName": "vNet123", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json index 6c79e7b45837..ea667fb25012 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP_Webhook", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "requestHistoryName": "08586611142732800686", "resourceGroupName": "test-resource-group", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json index 366b2f42704e..0196156a4ce6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitionsRequestHistories_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP_Webhook", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "test-resource-group", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json index 22aa9a74e0d4..cbb06fa52efa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json index d60aa5e57039..4f68e49471ca 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json index 4d9ed7e96b21..faeb7ccbdc2c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionRepetitions_ListExpressionTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json index 5d8bc8ff02c8..57b5220b57eb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "for_each", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000000", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json index 46119e07065d..22fef3f594b3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActionScopeRepetitions_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "for_each", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json index 4f8fcddddd40..1d4f8de64f59 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json index 241252c8ff75..b6e3e5e7f7f2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json index bf291ddaa028..454f7104d38f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRunActions_ListExpressionTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json index cad16a690593..d11b4d5b2c0c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Cancel.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json index 7ac03e92156f..07af784ea664 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json index 09ca493c1393..f2ac86f334d1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowRuns_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json index aac1d403d861..3f0fdae2ab09 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "historyName": "08586676746934337772206998657CU22", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json index 0b93121c2a61..fa669ad0e4d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "testTriggerName", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json index 6680d415790d..6e4bb5110f1b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggerHistories_Resubmit.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "historyName": "testHistoryName", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", @@ -11,7 +11,7 @@ "responses": { "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json index 368eba01f49f..175018b15b61 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "manual", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json index 62a1177e0847..5eb252da337b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_GetSchemaJson.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "testTrigger", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json index 07c3ba1a9e0c..a5816b0ba460 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json index 9b869c660815..69b48c814f48 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_ListCallbackUrl.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "manual", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json index 4b142702b7c8..03adf041130c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowTriggers_Run.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "recurrence", @@ -11,7 +11,7 @@ "200": {}, "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json index 248788bb65a4..de593ef9daf5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "versionId": "08586676824806722526", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json index 034c6fc1ebf3..24e97f67cb3a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/WorkflowVersions_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json index 30ed3471bf05..791ba13ac34e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_RegenerateAccessKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "keyType": { "keyType": "Primary" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json index e976b1f420f9..21faff295dab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/Workflows_Validate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "brazilsouth", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json index 427efaad1438..8427da59c935 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1", "resource": { "properties": {}, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json index c0e4b6a89dc7..5307572af8dd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json index 90e427821a73..e2b685611485 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json index ec8294d03988..7324c866a2c1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json index 794d4700925f..f2c519bcb6ff 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json @@ -3,7 +3,7 @@ "title": "ListAiGatewaysBySubscription", "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json index e24945117376..b2adc6e80d4b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json @@ -4,7 +4,7 @@ "parameters": { "subscriptionId": "00000000-0000-0000-0000-000000000000", "resourceGroupName": "testrg", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "name": "aigateway1", "properties": { "tags": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json index ac3ade6f9023..28d409a04254 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json index 8aa228fe28a6..6ad17beb6d3f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json index bdad092df2be..acc1d63cc76b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json index e133aef7786c..3c960d1041f8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "vnetInfo": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json index 58507447c631..d1d3fe9a3db0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "hostingEnvironmentEnvelope": { "kind": "Asev3", "location": "South Central US", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json index 746710039630..d5fad44ec5c9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "multiRolePoolEnvelope": { "properties": { "workerCount": 3, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json index 5d022c249f32..6fa089a58fc1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "multiRolePoolEnvelope": { "properties": { "workerCount": 3, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json index 7452ba4b9b13..ac727054c2cf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json index 5a331e3bd804..fa9ad3d72cee 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json index 4499c712ad78..b4b34ce5e7fd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json index feccbff76356..36f295770f58 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json index dc1038735eb7..a7f15f123f8b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json index ef47dcc02ee9..bfa062b1e629 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json index bd98d3e2ddaf..b3684e4ece5f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticsName": "test-diagnostic", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json index 0dcaae19abe3..4c7de5d4c983 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json index b5fe06e8948f..626234dc0f1e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "fa38656c-034e-43d8-adce-fe06ce039c98", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json index c44f791d1328..98bd8d67866c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json index e664d7a84632..c7e2528eaf55 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json index 1170e76d004b..9c3624b218c1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json index 83d875d4f321..4afd38955b5e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "workerPool1" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json index 642ad6f1528e..a41e60a5e89a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json index 5da2a93be642..8d55a2dcc05f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json index 7c672193663b..337eb5150f44 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json index ed687e58d312..940a0f0ffec4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json index c8129d9eb83a..6475b28f5e61 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json index fdc50821d3e5..d1e49bfd3ae9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json index 4e3ef0874d91..f7adaba1bb8d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instance": "10.7.1.8", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json index f15916c3ffa9..129eb0e1af75 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json index 4ddd69a3351e..469c77812ded 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json index c809f5120bff..9a96716709aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json index b97d8269ba4e..1db82783e992 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json index a1ed105eb6d1..4739fd8e6f6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json index 00afe44dafea..301f1c6f8b24 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json index cb6377d92673..2148129492aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "0" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json index 8e60943625ce..7a71b322cd5a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "0" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json index a987f8354b6c..d0d1626c69ad 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instance": "10.8.0.7", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json index 0f57ba4510af..680913a1bbea 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workerPoolName": "workerPool1" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json index e7340e69bf3f..48ac77e241b4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json index a204382c11b6..838521a33d6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json index e8c14d5fc92e..7d0133d301bd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json index 567d05f8d80e..364b8965a96a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json index dcf3b529d806..d05c40658a25 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleHostingEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json index 8d517d34eaf8..a3f638801da6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "hostingEnvironmentEnvelope": { "properties": { "frontEndScaleFactor": 20, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json index fb477539eb31..acaad5e72d61 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "aseNetworkingConfiguration": { "properties": { "ftpEnabled": true, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json index 5fa952c0a017..47cd15493a6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleHostingEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json index b954966d07a2..df0398d1c265 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slotSwapEntity": { "preserveVnet": true, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json index b4cbc945b6b4..8ebe7741412a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json index 580180b23db0..7a6fa475cb98 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json index f47cf2f34825..bcfc5b41c895 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "privateEndpointWrapper": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json index f065d190c995..4820324c09f3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "request": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json index 1c14b78d3763..097f7a1d1a17 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -256,7 +256,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json index 846dc1740f15..f6b6299a79d3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -257,7 +257,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json index 3d368785135e..8358d01a6375 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appServicePlan": { "kind": "app", "location": "East US", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json index 9b4d367fe7c7..781e5c91e111 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json index 4a9aa2b4d679..e4fa62fe722d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "functionapp,linux", @@ -344,7 +344,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json index 16dbb08c6891..5e430573cdc6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "functionapp,linux", @@ -373,7 +373,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json index b690adc26358..cd8388b9500c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json index d0bff32e651c..17b4e95c1776 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "location": "East US", "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json index 4de065aea990..e3fcf02c960d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteEnvelope": { "location": "West US 2", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json index 5783f672072e..33fa5a62293a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json index faa06f5277b8..c5926c9dd0d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "basicAuthEnvelope": { "properties": { "applicableEnvironmentsMode": "AllEnvironments", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json index 623e50cbd54f..b374b667d8a8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json index 544fec80e6a5..17765ad3b120 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json index 4b4f97223e74..87a63cc5c8de 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json index 1e435fbb6bab..9152749f1212 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "staticSiteCustomDomainRequestPropertiesEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json index 60a45c4e0a97..50456dc10a4a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json index 535b20da9036..456b740a6a3d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "setting1": "someval", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json index aaded9c688a9..c5cdb36a4f15 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -255,7 +255,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json index 14d5d49ad0aa..a59f6c014ba4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "kind": "app", @@ -246,7 +246,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json index 5a91d6255309..12e519f33ec1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteUserRolesInvitationEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json index 413b00dc40f1..934a0510bd21 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json index 951740b37683..67361ec324f7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json index fd3398522ed8..fc48ebee3168 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json index a13edb2b1d48..3292f05f41d8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowArtifacts": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json index 8cbce425a7aa..df8394e97b4b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json index 553b8e65786f..85b27095f910 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json index df88dc325b09..1ca1bb39099c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json index 065b7a1a4d34..00cae422c483 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json index 7590d82f3bac..d186aabb8f5b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json index 0ffa049a02a1..49e7e72a52e1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json index 503347df844d..0cf1d1be5a5f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json index 848a9ce1299b..34adeaf2df20 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json index 8c73b4d2b880..69f512174034 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json index f97cb727ce2d..d27f6d38e771 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json index e4cdb54d3097..53c881edbb6a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "authprovider": "aad", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json index 7034eca9195d..f1b8eaa2bf44 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json index c55213dfc53d..bc7a1e2d908b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json index 736fc64b4b11..23f031e3c839 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json index 5451cbe355e2..005615ff7d65 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json index bce7e778a0d8..f628e6b3eceb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json index 7076bef08871..f798dc3988f1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json index 0ba41ca60056..2bb5eaced008 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json index 1648ef7ad14f..a92f8372c11e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json index 6ae336ec6bf5..3efff0116483 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json index c19a7efcded3..e24527df4220 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "apprestartanalyses", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json index 8a664df9d36f..8cfd432fcc69 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json index e53a16cb7eef..95d83eb0c348 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json index e83f0acdc4cf..caa05848a61b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json index a214efe53e6b..ce070f8f6fff 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json index 1d694b9dcc18..54f9e8535817 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAppServiceEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json index 62b16480902a..817e5a599251 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json index 68e2be370b8e..755ce8980756 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json index 5713921fb76a..0a9bfdb6d3bf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json index 1a79eeae1656..3f241886fae2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "analysisName": "appanalysis", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json index f613a792d3f6..ba4ddc71de9f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json index a6ab3c4aeccf..d9b8cb27706d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json index 27a660cf2e90..dd11df514be4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json index 32782df2cae6..fab8f1317bbc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json index 9ab7105958db..38d11dc54db2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "runtimeavailability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json index 9849ccb2445c..159e415eb429 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json index cd80cc6c53b3..bf8e77a704a3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json index 4cc80a8ba971..b77d4dbf7189 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "detectorName": "sitecrashes", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json index bd3780216fbb..c89d977493fa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json index bd722b380ee6..c8bed91c2806 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json index b57f96108cba..0fba7233aca2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json index 35a82c113ac5..809c1214f9f5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json index 5f36849eb78e..7d5ed2e726e0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAppServiceEnvironment", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json index af8f377c246d..40c74e396a76 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json index 4429f8181617..5ad4e4761bb5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json index e7e43014b88d..60b7341fd77b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json index 3e295aeeb3de..eecc8c970ff4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json index 5381747f42b4..4afa317e0dc1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json index 0f729bc4ca99..05e2bcf60476 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json index 89682e145b92..9e891a583f52 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json index 2af63e524dab..0f68c7cc3fd2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json index 174a09833a31..868640a47080 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json index 1d672d26eb09..037de0e59388 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json index 516eb5d7a126..2d1d20d679c5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json index 2d699901b395..6e4e98f18ed7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "diagnosticCategory": "availability", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json index 04d79e514903..620548a50aef 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json index f0f1308f45e9..39da6827e8fe 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json index 688acde1bc4d..ae63133ffcfb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json index 9f129cc54793..775cdbc18914 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "siteName": "SampleApp", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json index 892e1ba3af9b..eecc12b531ca 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US 2", "staticSitesWorkflowPreviewRequest": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json index 6536045d8be9..311810dd2e43 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json index cdd145efdf49..74db79e7c3cb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json index cbff19850577..33e9f96d40de 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json index b66d39756d93..5921b265747c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json index 74029e1b0e0f..f02d0515b777 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json index 916944965cad..3f56816eb69c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deletedSiteId": "9", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json index 8595bf520183..4d00b1ef1ad3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deletedSiteId": "9", "location": "West US 2", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json index accacf14cef8..554b075fe4ab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deletedSiteId": "9", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json index 2d654fdf5c95..c4df1f198211 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json index 836607fd0bf7..4c88e0ccb0ba 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "westus" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json index 0bff34a77bd2..75b8591b0b14 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAse", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json index 61ee968d1a63..7d1a87315ecc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettingKey": "setting", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json index 8c3a6c95cce7..cfefeb520191 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettingKey": "setting", "resourceGroupName": "testrg123", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json index eabd307ba656..66ea6edda287 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json index 531d531bff39..8cb62625a988 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json index e99adff15227..46ebeaa1d1a5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json index 11e70c071e7d..a07e5a9e1c6b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json index 572a238cbbab..6b27158725d5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json index 4ded38bf265e..c34c3f4bec32 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json index 25081326b295..509b5415a6bf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleAse", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Sample-WestUSResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json index bd434bcbcdf2..72613449fbd3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json index bb991268d6ee..bf88b60fa69c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json index 18e7c81b84f2..4202f784c05f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json index b3e297543295..402e1cbfdcdc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json index 8a85e31836b7..15abbb5b39cd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "metadataName": "default", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json index d655067d365f..1a37caa1de21 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "metadataName": "default", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json index 2d0ea5021f20..efd05b3a09fc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json index bfd1b47ace1e..12afdcc16f9c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateName": "testc6282", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json index 839492800f28..28fe48d43182 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json index 2fad104135f9..1bad1186bff6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json index 5fb3748a3dce..25ab49b3af10 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "deploymentStatusId": "eacfd68b-3bbd-4ad9-99c5-98614d89c8e5", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json index d52937437a4f..96ad3e29b4f1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instanceId": "134987120", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json index 0fee6e3bb085..bb8c0e70603f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "instanceId": "134987120", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json index e7197a03278b..591b6de7214a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json index 8d613dd49510..93fff1442688 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json index 65024f71f8e5..e16152ab2258 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "slot": "stage", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json index 8bacf2962f72..ec5ccbcbb61c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "privateEndpointConnectionName": "connection", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json index 0321f08bb093..83d9a9dbcb3f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json index 52597ce6faab..bbac13c8735d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json index 55026a448074..8a6bd4993362 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json index ae06848e8d0e..d813f46f90a8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json index ed4b50793a99..e530b7ec83b4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "basicAuthName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json index ac8e8e0ae6a9..014b1556e51f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json index 6811e8496d59..5bc9c725aa35 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json index 7cf84befa150..e38e44515bd0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "environmentName": "default", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json index df60c0f0e217..bb1c989f4cdf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json index f3c1375b8851..da9c9ec57680 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json index 9bf59f6117aa..9530f9d4e209 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json index f9be1f97c63f..b9ce2f6b6fbb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json index 99b223fd0bfd..1344c9aef228 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json index d692785cdc88..4a39530ee3b5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json index 633dbd5ae0f2..c8247271d4e4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json index 6ff5dc4ad6d0..8f167c85b18c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json index baa7bbc33864..2be29e5da388 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json index 0fa9430369f7..2e9bda077b56 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json index de1ec550be18..2367315ba428 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json @@ -1,7 +1,7 @@ { "parameters": { "operationId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab5d5", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json index ed4d59430ab6..c7b18f2993cb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US", "quotaType": "regional", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json index 53748ae257c9..42732b98db5a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json index d6c60714b47a..448e2b2d2662 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "functionAppName": "testFunctionApp", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json index 441147411b7a..1983f93fe0eb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json index 996f80d7c9d4..260e4afcc792 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json index 830a60bcc13f..12d828b27405 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json index a7ffc4412181..834c6375f44a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json index bea9e24dcbf9..304109d53521 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "12345", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json index ef0d8938d641..20718f83c2b5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json index 7161cab1966f..3c67121e1114 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json index c7021df618dc..c8f3eb45da6c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "westus" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json index 2a947b4d90a3..3e3660ce7a85 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json index de6ee3ff4af4..65d3baa2fcdb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json index 832d6cdb71a5..2b5800ec71aa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json index 2439bf62e0ed..81e649b97485 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json index 5acbe8761bc2..607365bd0c81 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json index a87a30022f5f..ea580bedde83 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json index c14309b7247d..bd20d9f5d97c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json index 21770d48efc8..3c82e78fec9b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json @@ -2,7 +2,7 @@ "parameters": { "name": "SampleApp", "operationId": "c291433b-53ad-4c49-8cae-0a293eae1c6d", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json index f9628b29194a..c2803170d857 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json index ce60e355a67e..93a4cbfe688d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json index 9598091e195b..c760f64a2bca 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testkubeenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json index ed49c0b7d0da..7d6f7886e53b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json @@ -1,7 +1,7 @@ { "parameters": { "name": "examplekenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" @@ -15,7 +15,7 @@ "200": {}, "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-03-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.Web/kubeEnvironments/operationresults?api-version=2026-06-01-preview" } }, "204": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json index 72fecfb96341..afebc690e2b2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "jlaw-demo1", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json index a1edaf6a05b6..bad3795e7801 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "Samplek8se", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "examplerg", "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json index 05b441fe8385..14d33eb3ef82 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json @@ -1,7 +1,7 @@ { "parameters": { "name": "examplekenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "examplerg", "subscriptionId": "8efdecc5-919e-44eb-b179-915dca89ebf9" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json index 268442f85c1d..1a0c4b662bff 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testkubeenv", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "extendedLocation": { "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation", "type": "customLocation" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json index c63314c9768e..a4634d6133e3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "staticSiteLinkedBackendEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json index 169f2f9acec5..b8086db931e7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json index 78522eb84c8c..26b4f80443d3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json index 2256122b7d4a..9d8e7e3f371e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json index d68c3ae3ebfa..531cceea3ac9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json index f7a90ab6d95c..d4fac703a407 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json index ab6d645e3a7a..887e517949db 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json index 5c30be78c989..742fd05d3fa8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json index 2893cce04cbc..f11aba68ec84 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json index aedc0408af9e..153a80cb2f0f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json index 3c01f9e6a02f..cd2d7f587847 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "00000000-0000-0000-0000-000000000000" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json index 9f343433f090..aace4de56d23 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "hostname": "www.example.com", "subscriptionId": "00000000-0000-0000-0000-000000000000" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json index 804a026cb6d3..c6258ca4e5d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "West US 2", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json index 30e5104a458b..fc929cf5d52c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json index 6e3d6f453964..66c1d54ef9a4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json index 63b17d49ca69..03f728fd60fe 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "3fb8d758-2e2c-42e9-a528-a8acdfe87237" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json index 357a6f61256e..8e6e6dbdc45b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json index 86527f6ee0b4..b7dc070edd5f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json index 96baac08b12a..30de074d9fed 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "newsiteinnewASE-NCUS", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "Default-Web-NorthCentralUS", "slot": "Production", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json index 7d020af287c5..5beb23ad5274 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "4adb32ad-8327-4cbb-b775-b84b4465bb38" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json index f45256f7a520..0b864006c702 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json index 4c5a89e6852e..1854faf495a2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json index 648bb181c48d..571db4938b81 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json index 1913ad42d187..d696ac2ed2fd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json index 7a236b91656e..eca1f3506efc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "slot": "stage", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json index 93ee32d3e8e2..3dd09c94bd45 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json @@ -1,7 +1,7 @@ { "parameters": { "name": "tests346", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json index 590ab91d4c26..b514ba68f432 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json index fd0474c29010..e1302907cd5b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json index c3f63d2f691a..a50b2220b0e4 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json index 22f9a4196958..ad47acabc5e7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json index 7f421309b684..820d783eea64 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json index c62ac83f319a..687000b8fa21 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json index 9cf19359dae5..a5f4baea5a49 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json index a25a5c6668e8..a3e8e48a55d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json index 21ea987897bb..97c11cbc9dd3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json index 943ac950d04b..9f52c5b5561e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "authprovider": "all", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json index a3da819c91a7..63c01fe1af0c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json index 46373bad0ca7..f4689ef1b9e1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json index fdf7b773c076..27beb8001b76 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json @@ -3,7 +3,7 @@ "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", "name": "sitef6141", - "api-version": "2026-03-01-preview" + "api-version": "2026-06-01-preview" }, "responses": { "200": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json index 6033df8c8bd2..b53e37230638 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, "responses": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json index 443b28e3e364..44f9503fc5ef 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json index 31205eb6cee5..a05bcb93afe2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json index aa2a17e3bd83..127e62be5191 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "configurationName": "connections", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json index f49223d2856b..51cf90ecd9bc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "configurationName": "connections", "resourceGroupName": "testrg123", "slot": "staging", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json index c9a10f3ec32b..2c8d32a3d8a0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "staging", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json index 41ff38517ef0..b073c6aabdf6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsf6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appServicePlan": { "kind": "app", "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json index e77ae0c2caf0..6bc46c34db28 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testc6282", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json index 8749a95a160d..3b1648e2038b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json index 5eb51ccddb14..b87133e66356 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSiteName", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "certificateEnvelope": { "properties": { "keyVaultId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.KeyVault/vaults/testKV" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json index 3fa316aef33d..09550ca8006d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json index 05bf4b9bf318..c04b2a10e925 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json index 85948117181f..03227132a40f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "databaseConnectionName": "default", "databaseConnectionRequestEnvelope": { "properties": {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json index 6bfe8dbf72f9..b4775ef5cef8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowArtifacts": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json index 1d5ce85f7b20..ac760a6b0b8e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testsite2", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "testsSlot", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json index c94ed7f2367c..6ce5704fbf53 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "functionAppName": "testFunctionApp", "isForced": "true", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json index 339f4e781c73..f843f6e9aae3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "functionAppName": "testFunctionApp", "isForced": "true", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json index 65d6558423b3..b88069aedf40 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resetPropertiesEnvelope": { "properties": { "repositoryToken": "repoToken123", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json index 068e874b887b..1626f8ae9d10 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "backupId": "123244", "resourceGroupName": "testrg123", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", @@ -31,7 +31,7 @@ "200": {}, "202": { "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json index d08027b16512..9b3ac2e9f48d 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json index fbd8aa61f9ee..2cf71f333f17 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json index 0142c081a280..2fc5568b87cf 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json index e4a69871e4b9..78009fa07354 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "durationInSeconds": 60, "resourceGroupName": "testrg123", "slot": "Production", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json index 63bdcd1ceb28..0286c04986fb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "12", "resourceGroupName": "rg", "staticSiteZipDeploymentEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json index 063d84a95da4..bcc3e664ff54 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "staticSiteZipDeploymentEnvelope": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json index 112508c217d4..a6236a898734 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json index 2805fa6b5594..b269c323ec12 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json index 51f520450cd8..d538f56ca34e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json index f1f5e80b1cbf..dde74288e554 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "SampleApp", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "slot": "Production", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json index 65ba920f246a..cb1f45a5b4fc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "cleanUpAuth": true, "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json index cdcf2b16173e..67378dc910fd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "cleanUpAuth": true, "environmentName": "12", "linkedBackendName": "testBackend", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json index 6931aefb0c76..8b2f94ef4d52 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "appSettings": { "properties": { "Setting1": "Value1", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json index 4d6f9f2f76d4..bf2ef1a8a847 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-ase", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "customDnsSuffixConfiguration": { "properties": { "certificateUrl": "https://test-kv.vault.azure.net/secrets/contosocert", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json index 4ba845970fbb..320434b61d46 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteAuthSettings": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json index 8c9f96f91b40..cf8485ceb5fc 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteAuthSettingsV2": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json index 5947ea770da9..e38309cfe970 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "azureStorageAccounts": { "properties": { "account1": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json index 221f9b79073b..51a103019aad 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "contoso", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "rg", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json index cacef8a4499c..8b766094a772 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json index 27d609eb77c6..02c876361162 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json index 7aae966734ab..6e8a0dd17f03 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json index 2ce3b47739b8..14483fe08e9f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testSite", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "csmPublishingAccessPoliciesEntity": { "properties": { "allow": true diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json index 9eb890e4d12e..fec7772d7330 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteConfig": { "properties": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json index df2155526dfe..08adec1eda1b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "authprovider": "aad", "resourceGroupName": "rg", "staticSiteUserEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json index d06fc8607ae8..e4f925c9b508 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "properties": { @@ -252,7 +252,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json index 9c0b4ebb4e8c..d65c2ebcbab7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json @@ -1,7 +1,7 @@ { "parameters": { "name": "sitef6141", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testrg123", "siteEnvelope": { "properties": { @@ -243,7 +243,7 @@ } }, "headers": { - "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-03-01-preview" + "azure-asyncoperation": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/sites/sitef6141/operationResults/62e4d893-d233-4005-988e-a428d9f77076?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json index 923187beb563..5d3f9e8e8852 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "linkedBackendName": "testBackend", "resourceGroupName": "rg", "staticSiteLinkedBackendEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json index 94190fb00651..e32540b8eb75 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "environmentName": "default", "linkedBackendName": "testBackend", "resourceGroupName": "rg", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json index 92776989aeed..896a977d24df 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json @@ -1,7 +1,7 @@ { "parameters": { "name": "testStaticSite0", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "domainName": "custom.domain.net", "resourceGroupName": "rg", "staticSiteCustomDomainRequestPropertiesEnvelope": { diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json index a9bb29fbe9be..1a25b0bbf900 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json @@ -1,6 +1,6 @@ { "parameters": { - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "parameters": { "properties": { "vnetName": "vNet123", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json index 6c79e7b45837..ea667fb25012 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP_Webhook", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "requestHistoryName": "08586611142732800686", "resourceGroupName": "test-resource-group", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json index 366b2f42704e..0196156a4ce6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP_Webhook", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "test-resource-group", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json index 22aa9a74e0d4..cbb06fa52efa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json index d60aa5e57039..4f68e49471ca 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json index 4d9ed7e96b21..faeb7ccbdc2c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json index 5d8bc8ff02c8..57b5220b57eb 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "for_each", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000000", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json index 46119e07065d..22fef3f594b3 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "for_each", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json index 4f8fcddddd40..1d4f8de64f59 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "HTTP", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json index 241252c8ff75..b6e3e5e7f7f2 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json index bf291ddaa028..454f7104d38f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json @@ -2,7 +2,7 @@ "parameters": { "name": "test-name", "actionName": "testAction", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "repetitionName": "000001", "resourceGroupName": "testResourceGroup", "runName": "08586776228332053161046300351", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json index cad16a690593..d11b4d5b2c0c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json index 7ac03e92156f..07af784ea664 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "runName": "08586676746934337772206998657CU22", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json index 09ca493c1393..f2ac86f334d1 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json index aac1d403d861..3f0fdae2ab09 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "historyName": "08586676746934337772206998657CU22", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json index 0b93121c2a61..fa669ad0e4d6 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "testTriggerName", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json index 6680d415790d..6e4bb5110f1b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "historyName": "testHistoryName", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", @@ -11,7 +11,7 @@ "responses": { "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json index 368eba01f49f..175018b15b61 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "manual", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json index 62a1177e0847..5eb252da337b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "testResourceGroup", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "testTrigger", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json index 07c3ba1a9e0c..a5816b0ba460 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json index 9b869c660815..69b48c814f48 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "manual", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json index 4b142702b7c8..03adf041130c 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "triggerName": "recurrence", @@ -11,7 +11,7 @@ "200": {}, "202": { "headers": { - "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-03-01-preview" + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-rg/providers/Microsoft.Web//workflows/testWorkflowName/triggers/testTriggerName/histories/08586676746934337772206998657CU22?api-version=2026-06-01-preview" } } }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json index 248788bb65a4..de593ef9daf5 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "versionId": "08586676824806722526", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json index 034c6fc1ebf3..24e97f67cb3a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "workflowName": "test-workflow" diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json index 30ed3471bf05..791ba13ac34e 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "keyType": { "keyType": "Primary" }, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json index e976b1f420f9..21faff295dab 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json @@ -1,7 +1,7 @@ { "parameters": { "name": "test-name", - "api-version": "2026-03-01-preview", + "api-version": "2026-06-01-preview", "location": "brazilsouth", "resourceGroupName": "test-resource-group", "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", From e73473b6a4559c61c3b7f93383e911a2df3150d6 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Wed, 22 Apr 2026 17:06:53 -0700 Subject: [PATCH 05/10] run tsp format --- .../Microsoft.Web/AppService/LastKnownGood.tsp | 16 +++++++--------- .../AppService/ManagedTrafficConfig.tsp | 12 ++++++------ .../Microsoft.Web/AppService/ServerFarmSilo.tsp | 16 +++++++--------- .../Microsoft.Web/AppService/SiteSilo.tsp | 15 +++++++-------- .../Microsoft.Web/AppService/models.tsp | 5 +++-- 5 files changed, 30 insertions(+), 34 deletions(-) diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp index 1dd6632f5769..97cc72699007 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp @@ -38,16 +38,16 @@ model LastKnownGoodResource interface LastKnownGoodOps extends Azure.ResourceManager.Legacy.LegacyOperations< { - ...ApiVersionParameter; - ...SubscriptionIdParameter; - ...ResourceGroupParameter; - ...Azure.ResourceManager.Legacy.Provider; + ...ApiVersionParameter, + ...SubscriptionIdParameter, + ...ResourceGroupParameter, + ...Azure.ResourceManager.Legacy.Provider, /** Name of the app. */ @path @segment("sites") @key - name: string; + name: string, }, { /** Name of the Last Known Good resource. Must be "default". */ @@ -55,7 +55,7 @@ interface LastKnownGoodOps @segment("lastKnownGood") @key @pattern("^default$") - lkgName: string; + lkgName: string, } > {} @@ -85,9 +85,7 @@ interface LastKnownGoods { >; } -@@doc(LastKnownGoodResource.name, - "Name of the Last Known Good resource." -); +@@doc(LastKnownGoodResource.name, "Name of the Last Known Good resource."); @@doc(LastKnownGoodResource.properties, "LastKnownGood resource specific properties" ); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp index ae10c79aa258..0cf843fa8abd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp @@ -38,16 +38,16 @@ model ManagedTrafficConfigResource interface ManagedTrafficConfigOps extends Azure.ResourceManager.Legacy.LegacyOperations< { - ...ApiVersionParameter; - ...SubscriptionIdParameter; - ...ResourceGroupParameter; - ...Azure.ResourceManager.Legacy.Provider; + ...ApiVersionParameter, + ...SubscriptionIdParameter, + ...ResourceGroupParameter, + ...Azure.ResourceManager.Legacy.Provider, /** Name of the app. */ @path @segment("sites") @key - name: string; + name: string, }, { /** Name of the managed traffic configuration. Must be "default". */ @@ -55,7 +55,7 @@ interface ManagedTrafficConfigOps @segment("managedTrafficConfig") @key @pattern("^default$") - configName: string; + configName: string, } > {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp index d6296d42241f..0a698e08e31b 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp @@ -38,16 +38,16 @@ model ServerFarmSilo interface ServerFarmSiloOps extends Azure.ResourceManager.Legacy.LegacyOperations< { - ...ApiVersionParameter; - ...SubscriptionIdParameter; - ...ResourceGroupParameter; - ...Azure.ResourceManager.Legacy.Provider; + ...ApiVersionParameter, + ...SubscriptionIdParameter, + ...ResourceGroupParameter, + ...Azure.ResourceManager.Legacy.Provider, /** Name of the App Service plan. */ @path @segment("serverfarms") @key - name: string; + name: string, }, { /** Name of the silo. */ @@ -55,7 +55,7 @@ interface ServerFarmSiloOps @segment("silos") @key @pattern("^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$") - siloName: string; + siloName: string, } > {} @@ -102,9 +102,7 @@ interface ServerFarmSilos { } @@doc(ServerFarmSilo.name, "Name of the silo."); -@@doc(ServerFarmSilo.properties, - "ServerFarmSilo resource specific properties" -); +@@doc(ServerFarmSilo.properties, "ServerFarmSilo resource specific properties"); @@doc(ServerFarmSilos.createOrUpdateServerFarmSilo::parameters.resource, "Details of the silo." ); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp index f36a9e919941..e7ddd231e3d0 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp @@ -19,8 +19,7 @@ namespace Microsoft.Web; */ @added(Versions.v2026_06_01_preview) @parentResource(Site) -model SiteSilo - is Azure.ResourceManager.TrackedResource { +model SiteSilo is Azure.ResourceManager.TrackedResource { ...ResourceNameParameter< Resource = SiteSilo, KeyName = "siloName", @@ -38,16 +37,16 @@ model SiteSilo interface SiteSiloOps extends Azure.ResourceManager.Legacy.LegacyOperations< { - ...ApiVersionParameter; - ...SubscriptionIdParameter; - ...ResourceGroupParameter; - ...Azure.ResourceManager.Legacy.Provider; + ...ApiVersionParameter, + ...SubscriptionIdParameter, + ...ResourceGroupParameter, + ...Azure.ResourceManager.Legacy.Provider, /** Name of the app. */ @path @segment("sites") @key - name: string; + name: string, }, { /** Name of the silo. */ @@ -55,7 +54,7 @@ interface SiteSiloOps @segment("silos") @key @pattern("^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$") - siloName: string; + siloName: string, } > {} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp index 75153e1b51e2..8ccca5bceeb8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/models.tsp @@ -16240,13 +16240,14 @@ model ManagedTrafficConfigProperties { * Collection of managed traffic configuration resources. */ @added(Versions.v2026_06_01_preview) -model ManagedTrafficConfigCollection is Azure.Core.Page; +model ManagedTrafficConfigCollection + is Azure.Core.Page; /** * Properties of the Last Known Good revision for a site. */ -@added(Versions.v2026_06_01_preview) #suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-provisioning-state" "LastKnownGood is a simple read-only data model, not a provisionable resource" +@added(Versions.v2026_06_01_preview) model LastKnownGoodProperties { /** * Name of the primary site. From 504023cf236ea5b127b3bab57d19e325faf80990 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Wed, 22 Apr 2026 18:59:47 -0700 Subject: [PATCH 06/10] fix example mismatch with swagger --- .../AppService/ManagedTrafficConfig.tsp | 9 +-- ...icConfigs_UpdateManagedTrafficConfig.json} | 4 +- ...ficConfigs_UpdateManagedTrafficConfig.json | 57 +++++++++++++++++++ .../preview/2026-06-01-preview/openapi.json | 16 ++---- 4 files changed, 69 insertions(+), 17 deletions(-) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json => ManagedTrafficConfigs_UpdateManagedTrafficConfig.json} (90%) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp index 0cf843fa8abd..3ed81dafbdf8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp @@ -73,11 +73,12 @@ interface ManagedTrafficConfigs { >; /** - * Create or update the managed traffic configuration for a web app. + * Update the managed traffic configuration for a web app. */ - @summary("Create or update the managed traffic configuration for a web app.") - createOrUpdateManagedTrafficConfig is ManagedTrafficConfigOps.CreateOrUpdateSync< + @summary("Update the managed traffic configuration for a web app.") + updateManagedTrafficConfig is ManagedTrafficConfigOps.CreateOrUpdateSync< ManagedTrafficConfigResource, + Response = ArmResourceUpdatedResponse, OverrideErrorType = DefaultErrorResponse >; } @@ -88,6 +89,6 @@ interface ManagedTrafficConfigs { @@doc(ManagedTrafficConfigResource.properties, "ManagedTrafficConfig resource specific properties" ); -@@doc(ManagedTrafficConfigs.createOrUpdateManagedTrafficConfig::parameters.resource, +@@doc(ManagedTrafficConfigs.updateManagedTrafficConfig::parameters.resource, "Traffic configuration properties." ); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json similarity index 90% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json index e96cb5f8587b..709d5dd59944 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json @@ -1,6 +1,6 @@ { - "operationId": "ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig", - "title": "Create or update the managed traffic configuration for a web app", + "operationId": "ManagedTrafficConfigs_UpdateManagedTrafficConfig", + "title": "Update the managed traffic configuration for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", "resourceGroupName": "testrg123", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json new file mode 100644 index 000000000000..709d5dd59944 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json @@ -0,0 +1,57 @@ +{ + "operationId": "ManagedTrafficConfigs_UpdateManagedTrafficConfig", + "title": "Update the managed traffic configuration for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "configName": "default", + "api-version": "2026-06-01-preview", + "resource": { + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ], + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json index 8f7379dfe91b..bab95cf6a687 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json @@ -16459,12 +16459,12 @@ } }, "put": { - "operationId": "ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig", + "operationId": "ManagedTrafficConfigs_UpdateManagedTrafficConfig", "tags": [ "WebApps" ], - "summary": "Create or update the managed traffic configuration for a web app.", - "description": "Create or update the managed traffic configuration for a web app.", + "summary": "Update the managed traffic configuration for a web app.", + "description": "Update the managed traffic configuration for a web app.", "parameters": [ { "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -16507,12 +16507,6 @@ "$ref": "#/definitions/ManagedTrafficConfigResource" } }, - "201": { - "description": "Resource 'ManagedTrafficConfigResource' create operation succeeded", - "schema": { - "$ref": "#/definitions/ManagedTrafficConfigResource" - } - }, "default": { "description": "An unexpected error response.", "schema": { @@ -16521,8 +16515,8 @@ } }, "x-ms-examples": { - "Create or update the managed traffic configuration for a web app": { - "$ref": "./examples/ManagedTrafficConfigs_CreateOrUpdateManagedTrafficConfig.json" + "Update the managed traffic configuration for a web app": { + "$ref": "./examples/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json" } } } From 6d0ebc2d54b3d93eda5aada12cab232176066bc7 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Wed, 22 Apr 2026 19:11:33 -0700 Subject: [PATCH 07/10] fix readme --- .../resource-manager/Microsoft.Web/AppService/readme.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/readme.md b/specification/web/resource-manager/Microsoft.Web/AppService/readme.md index 10d26149fded..74df40e28b4a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/readme.md +++ b/specification/web/resource-manager/Microsoft.Web/AppService/readme.md @@ -102,6 +102,15 @@ directive: reason: MSDeploy is the intentional name matching the existing service API. ``` +### Tag: package-2026-06-01-preview + +These settings apply only when `--tag=package-2026-06-01-preview` is specified on the command line. + +```yaml $(tag) == 'package-2026-06-01-preview' +input-file: + - preview/2026-06-01-preview/openapi.json +``` + ### Tag: package-2026-03-01-preview These settings apply only when `--tag=package-2026-03-01-preview` is specified on the command line. From e8f4ac97e852ab536224f98ff7d0a615146402c5 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Wed, 22 Apr 2026 19:38:08 -0700 Subject: [PATCH 08/10] remove unnecessary added file --- changed_files.txt | 354 ---------------------------------------------- 1 file changed, 354 deletions(-) delete mode 100644 changed_files.txt diff --git a/changed_files.txt b/changed_files.txt deleted file mode 100644 index af6af12177b3..000000000000 --- a/changed_files.txt +++ /dev/null @@ -1,354 +0,0 @@ -specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp -specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp -specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp -specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp -specification/web/resource-manager/Microsoft.Web/AppService/main.tsp -specification/web/resource-manager/Microsoft.Web/AppService/models.tsp -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_CreateOrUpdate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Delete.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_ListBySubscription.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AIGateways_Patch.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostName.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AnalyzeCustomHostNameSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ApproveOrRejectPrivateEndpointConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ChangeVnet.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateMultiRolePool_UpdateMultiRolePool.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_CreateOrUpdateWorkerPool_CreateOrUpdateWorkerPool.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Delete.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_DeletePrivateEndpointConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetAseV3NetworkingConfiguration.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetDiagnosticsItem.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetMultiRolePool.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateEndpointConnectionList.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetPrivateLinkResources.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetVipInfo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_GetWorkerPool.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListAppServicePlans.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListCapacities.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListDiagnostics.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleMetricDefinitions.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolInstanceMetricDefinitions.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePoolSkus.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRolePools.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListMultiRoleUsages.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListOperations.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListUsages.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebApps.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerMetricDefinitions.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWebWorkerUsages.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolInstanceMetricDefinitions.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPoolSkus.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_ListWorkerPools.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Reboot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Resume.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Suspend.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_TestUpgradeAvailableNotification.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Update.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_UpdateAseNetworkingConfiguration.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/AppServiceEnvironments_Upgrade.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApplySlotConfig.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnectionSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ApproveRejectSitePrivateEndpointConnection_StaticSites.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/BackupWebApp.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebApp.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CloneWebAppSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateAppServicePlan.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumption.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateFunctionAppFlexConsumptionWithDetails.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateManagedTrafficConfig.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateServerFarmSilo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteCertificateSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateSiteSilo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBasicAuth.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteBuildFunctionAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteCustomDomain.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateStaticSiteFunctionAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebApp.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateOrUpdateWebAppSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/CreateUserRolesInvitationLink.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAppServicePlan.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteAseCustomDnsSuffixConfiguration.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteDeployWorkflowArtifacts.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteServerFarmSilo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteCertificateSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnectionSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSitePrivateEndpointConnection_StaticSites.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteSiteSilo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteBuildDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteCustomDomain.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteStaticSiteUser.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebApp.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppBackup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DeleteWebAppSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/DetachUserProvidedFunctionAppFromStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysisSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteAnalysis_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetectorSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ExecuteSiteDetector_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysisSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteAnalysis_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponseSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorResponse_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetectorSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDetector_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategorySlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_GetSiteDiagnosticCategory_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListHostingEnvironmentDetectorResponses.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalysesSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteAnalyses_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponsesSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorResponses_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectorsSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDetectors_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategoriesSlot_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Diagnostics_ListSiteDiagnosticCategories_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GenerateStaticSiteWorkflowPreview.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAllStaticSites.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAppServicePlan.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAseCustomDnsSuffixConfiguration.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetAuthSettingsV2WithoutSecrets.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebApp.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppByLocation.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetDeletedWebAppSnapshots.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacks.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetFunctionAppStacksForLocation.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetInboundNetworkDependenciesEndpoints.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSetting.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetKeyVaultReferencesForAppSettingsSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendForStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetLinkedBackendsForStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetManagedTrafficConfig.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetOutboundNetworkDependenciesEndpoints.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicySlot_FtpAllowedSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetPublishingCredentialsPolicy_GetFtpAllowed.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetResourceHealthMetadataBySite_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetServerFarmSilo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteCertificateSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteConfig.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatus.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteDeploymentStatusSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteInstanceInfo_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionList.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnectionSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateEndpointConnection_StaticSites.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResourcesSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSitePrivateLinkResources_WebApps.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSiteSilo.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBasicAuth.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnections.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuildDatabaseConnectionsWithDetails.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteBuilds.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomain.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteCustomDomains.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionWithDetails.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnections.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSiteDatabaseConnectionsWithDetails.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetStaticSites.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetSubscriptionOperationWithAsyncResponse.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUsagesInLocation.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppForStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetUserProvidedFunctionAppsForStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebApp.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppBackupWithSecrets.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacks.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebAppStacksForLocation.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_SlotV2.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraceOperation_V2.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_GetNetworkTracesSlotV2.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWebSiteNetworkTraces_SlotV2.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/GetWorkflow_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_CreateOrUpdate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Delete.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_ListBySubscription.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/KubeEnvironments_Update.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LinkBackendToStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlans.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppServicePlansByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAseRegions.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListAuthSettingsV2.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificates.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCertificatesByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomHostNameSites.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListCustomSpecificHostNameSites.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListDeletedWebAppsByLocation.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListManagedTrafficConfigs.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListOperations.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPolicies.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListPublishingCredentialsPoliciesSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySite_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListResourceHealthMetadataBySubscription.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListServerFarmSilos.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteBackupsSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteCertificatesByResourceGroupSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatus.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteDeploymentStatusSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSiteSilos.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListSlotBackups.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBasicAuth.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctionAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteBuildFunctions.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteConfiguredRoles.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctionAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteFunctions.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteSecrets.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListStaticSiteUsers.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppBackups.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppConfigurations.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppSlots.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebApps.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWebAppsByResourceGroup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflowsConfigurationConnections_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ListWorkflows_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchAppServicePlan.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchSiteCertificateSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteBuildDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PatchStaticSiteDatabaseConnection.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifacts.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/PostDeployWorkflowArtifactsSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RegisterUserProvidedFunctionAppWithStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ResetStaticSiteApiKey.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/RestoreWebAppBackup.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTrace.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StartWebSiteNetworkTraceOperation_StartNetworkTraceSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteBuildZipDeploy.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StaticSiteZipDeploy.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_Slot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTrace.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/StopWebSiteNetworkTrace_StopNetworkTraceSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UnlinkBackendFromStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAppSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAseCustomDnsSuffixConfiguration.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettings.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAuthSettingsV2.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateAzureStorageAccounts.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateMachineKey.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicySlot_UpdateFtpAllowedSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdatePublishingCredentialsPolicy_UpdateFtpAllowed.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateSiteConfig.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateStaticSiteUser.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebApp.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/UpdateWebAppSlot.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSite.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateLinkedBackendForStaticSiteBuild.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ValidateStaticSiteCustomDomain.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/VerifyHostingEnvironmentVnet.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitionsRequestHistories_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionRepetitions_ListExpressionTraces.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActionScopeRepetitions_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRunActions_ListExpressionTraces.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Cancel.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowRuns_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggerHistories_Resubmit.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_GetSchemaJson.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_ListCallbackUrl.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowTriggers_Run.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_Get.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/WorkflowVersions_List.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_RegenerateAccessKey.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/Workflows_Validate.json -specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json From 370327a7e3e06b2e3f2a0c88e6645a54f115c38a Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Wed, 22 Apr 2026 21:12:33 -0700 Subject: [PATCH 09/10] fix naming error in linter --- .../AppService/LastKnownGood.tsp | 4 +- .../AppService/ManagedTrafficConfig.tsp | 6 +- .../AppService/ServerFarmSilo.tsp | 10 +- .../Microsoft.Web/AppService/SiteSilo.tsp | 10 +- ...KnownGood.json => LastKnownGoods_Get.json} | 2 +- ...nownGood.json => LastKnownGoods_Mark.json} | 2 +- ...ig.json => ManagedTrafficConfigs_Get.json} | 2 +- ...json => ManagedTrafficConfigs_Update.json} | 2 +- ...on => ServerFarmSilos_CreateOrUpdate.json} | 2 +- ...mSilo.json => ServerFarmSilos_Delete.json} | 2 +- ...FarmSilo.json => ServerFarmSilos_Get.json} | 2 +- ...rmSilos.json => ServerFarmSilos_List.json} | 2 +- ...ilo.json => SiteSilos_CreateOrUpdate.json} | 2 +- ...eteSiteSilo.json => SiteSilos_Delete.json} | 2 +- ...os_GetSiteSilo.json => SiteSilos_Get.json} | 2 +- ...ListSiteSilos.json => SiteSilos_List.json} | 2 +- .../examples/LastKnownGoods_Get.json | 24 +++++ .../examples/LastKnownGoods_Mark.json | 24 +++++ .../examples/ManagedTrafficConfigs_Get.json | 38 ++++++++ .../ManagedTrafficConfigs_Update.json | 57 +++++++++++ .../ServerFarmSilos_CreateOrUpdate.json | 59 +++++++++++ .../examples/ServerFarmSilos_Delete.json | 19 ++++ .../examples/ServerFarmSilos_Get.json | 31 ++++++ .../examples/ServerFarmSilos_List.json | 50 ++++++++++ .../examples/SiteSilos_CreateOrUpdate.json | 97 +++++++++++++++++++ .../examples/SiteSilos_Delete.json | 19 ++++ .../examples/SiteSilos_Get.json | 45 +++++++++ .../examples/SiteSilos_List.json | 60 ++++++++++++ .../preview/2026-06-01-preview/openapi.json | 48 ++++----- 29 files changed, 574 insertions(+), 51 deletions(-) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{LastKnownGoods_GetLastKnownGood.json => LastKnownGoods_Get.json} (93%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{LastKnownGoods_MarkLastKnownGood.json => LastKnownGoods_Mark.json} (92%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{ManagedTrafficConfigs_GetManagedTrafficConfig.json => ManagedTrafficConfigs_Get.json} (94%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{ManagedTrafficConfigs_UpdateManagedTrafficConfig.json => ManagedTrafficConfigs_Update.json} (95%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{ServerFarmSilos_CreateOrUpdateServerFarmSilo.json => ServerFarmSilos_CreateOrUpdate.json} (96%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{ServerFarmSilos_DeleteServerFarmSilo.json => ServerFarmSilos_Delete.json} (91%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{ServerFarmSilos_GetServerFarmSilo.json => ServerFarmSilos_Get.json} (94%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{ServerFarmSilos_ListServerFarmSilos.json => ServerFarmSilos_List.json} (97%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{SiteSilos_CreateOrUpdateSiteSilo.json => SiteSilos_CreateOrUpdate.json} (98%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{SiteSilos_DeleteSiteSilo.json => SiteSilos_Delete.json} (93%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{SiteSilos_GetSiteSilo.json => SiteSilos_Get.json} (97%) rename specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/{SiteSilos_ListSiteSilos.json => SiteSilos_List.json} (98%) create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Mark.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Update.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_List.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdate.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Delete.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Get.json create mode 100644 specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_List.json diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp index 97cc72699007..77b0f03a5f65 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/LastKnownGood.tsp @@ -67,7 +67,7 @@ interface LastKnownGoods { * Get the current Last Known Good revision for a web app. */ @summary("Get the current Last Known Good revision for a web app.") - getLastKnownGood is LastKnownGoodOps.Read< + get is LastKnownGoodOps.Read< LastKnownGoodResource, OverrideErrorType = DefaultErrorResponse >; @@ -77,7 +77,7 @@ interface LastKnownGoods { */ @summary("Mark the current site state as Last Known Good.") @action("mark") - markLastKnownGood is LastKnownGoodOps.ActionSync< + mark is LastKnownGoodOps.ActionSync< LastKnownGoodResource, void, ArmResponse, diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp index 3ed81dafbdf8..23b90c99dfca 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ManagedTrafficConfig.tsp @@ -67,7 +67,7 @@ interface ManagedTrafficConfigs { * Get the managed traffic configuration for a web app. */ @summary("Get the managed traffic configuration for a web app.") - getManagedTrafficConfig is ManagedTrafficConfigOps.Read< + get is ManagedTrafficConfigOps.Read< ManagedTrafficConfigResource, OverrideErrorType = DefaultErrorResponse >; @@ -76,7 +76,7 @@ interface ManagedTrafficConfigs { * Update the managed traffic configuration for a web app. */ @summary("Update the managed traffic configuration for a web app.") - updateManagedTrafficConfig is ManagedTrafficConfigOps.CreateOrUpdateSync< + update is ManagedTrafficConfigOps.CreateOrUpdateSync< ManagedTrafficConfigResource, Response = ArmResourceUpdatedResponse, OverrideErrorType = DefaultErrorResponse @@ -89,6 +89,6 @@ interface ManagedTrafficConfigs { @@doc(ManagedTrafficConfigResource.properties, "ManagedTrafficConfig resource specific properties" ); -@@doc(ManagedTrafficConfigs.updateManagedTrafficConfig::parameters.resource, +@@doc(ManagedTrafficConfigs.update::parameters.resource, "Traffic configuration properties." ); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp index 0a698e08e31b..0f021b16457a 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/ServerFarmSilo.tsp @@ -67,7 +67,7 @@ interface ServerFarmSilos { * Get a specific silo for an App Service plan. */ @summary("Get a specific silo for an App Service plan.") - getServerFarmSilo is ServerFarmSiloOps.Read< + get is ServerFarmSiloOps.Read< ServerFarmSilo, OverrideErrorType = DefaultErrorResponse >; @@ -76,7 +76,7 @@ interface ServerFarmSilos { * Create or update an App Service plan silo. */ @summary("Create or update an App Service plan silo.") - createOrUpdateServerFarmSilo is ServerFarmSiloOps.CreateOrUpdateAsync< + createOrUpdate is ServerFarmSiloOps.CreateOrUpdateAsync< ServerFarmSilo, OverrideErrorType = DefaultErrorResponse >; @@ -85,7 +85,7 @@ interface ServerFarmSilos { * Delete an App Service plan silo. */ @summary("Delete an App Service plan silo.") - deleteServerFarmSilo is ServerFarmSiloOps.DeleteWithoutOkAsync< + delete is ServerFarmSiloOps.DeleteWithoutOkAsync< ServerFarmSilo, OverrideErrorType = DefaultErrorResponse >; @@ -94,7 +94,7 @@ interface ServerFarmSilos { * Get all silos for an App Service plan. */ @summary("Get all silos for an App Service plan.") - listServerFarmSilos is ServerFarmSiloOps.List< + list is ServerFarmSiloOps.List< ServerFarmSilo, Response = ArmResponse, OverrideErrorType = DefaultErrorResponse @@ -103,6 +103,6 @@ interface ServerFarmSilos { @@doc(ServerFarmSilo.name, "Name of the silo."); @@doc(ServerFarmSilo.properties, "ServerFarmSilo resource specific properties"); -@@doc(ServerFarmSilos.createOrUpdateServerFarmSilo::parameters.resource, +@@doc(ServerFarmSilos.createOrUpdate::parameters.resource, "Details of the silo." ); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp index e7ddd231e3d0..9cf0e7e9cbfd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp @@ -66,7 +66,7 @@ interface SiteSilos { * Get a specific silo for a web app. */ @summary("Get a specific silo for a web app.") - getSiteSilo is SiteSiloOps.Read< + get is SiteSiloOps.Read< SiteSilo, OverrideErrorType = DefaultErrorResponse >; @@ -75,7 +75,7 @@ interface SiteSilos { * Create or update a web app silo. */ @summary("Create or update a web app silo.") - createOrUpdateSiteSilo is SiteSiloOps.CreateOrUpdateAsync< + createOrUpdate is SiteSiloOps.CreateOrUpdateAsync< SiteSilo, OverrideErrorType = DefaultErrorResponse >; @@ -84,7 +84,7 @@ interface SiteSilos { * Delete a web app silo. */ @summary("Delete a web app silo.") - deleteSiteSilo is SiteSiloOps.DeleteWithoutOkAsync< + delete is SiteSiloOps.DeleteWithoutOkAsync< SiteSilo, OverrideErrorType = DefaultErrorResponse >; @@ -93,7 +93,7 @@ interface SiteSilos { * Get all silos for a web app. */ @summary("Get all silos for a web app.") - listSiteSilos is SiteSiloOps.List< + list is SiteSiloOps.List< SiteSilo, Response = ArmResponse, OverrideErrorType = DefaultErrorResponse @@ -102,6 +102,6 @@ interface SiteSilos { @@doc(SiteSilo.name, "Name of the silo."); @@doc(SiteSilo.properties, "SiteSilo resource specific properties"); -@@doc(SiteSilos.createOrUpdateSiteSilo::parameters.resource, +@@doc(SiteSilos.createOrUpdate::parameters.resource, "Details of the silo." ); diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_GetLastKnownGood.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_Get.json similarity index 93% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_GetLastKnownGood.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_Get.json index 184c35457c59..c9c73f099059 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_GetLastKnownGood.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_Get.json @@ -1,5 +1,5 @@ { - "operationId": "LastKnownGoods_GetLastKnownGood", + "operationId": "LastKnownGoods_Get", "title": "Get the current Last Known Good revision for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_MarkLastKnownGood.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_Mark.json similarity index 92% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_MarkLastKnownGood.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_Mark.json index efb1a4848d6e..fe89e964ffa9 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_MarkLastKnownGood.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/LastKnownGoods_Mark.json @@ -1,5 +1,5 @@ { - "operationId": "LastKnownGoods_MarkLastKnownGood", + "operationId": "LastKnownGoods_Mark", "title": "Mark the current site state as Last Known Good", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_GetManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_Get.json similarity index 94% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_GetManagedTrafficConfig.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_Get.json index c7b46138c021..d1acb3912561 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_GetManagedTrafficConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_Get.json @@ -1,5 +1,5 @@ { - "operationId": "ManagedTrafficConfigs_GetManagedTrafficConfig", + "operationId": "ManagedTrafficConfigs_Get", "title": "Get the managed traffic configuration for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_Update.json similarity index 95% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_Update.json index 709d5dd59944..586a616e3df8 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ManagedTrafficConfigs_Update.json @@ -1,5 +1,5 @@ { - "operationId": "ManagedTrafficConfigs_UpdateManagedTrafficConfig", + "operationId": "ManagedTrafficConfigs_Update", "title": "Update the managed traffic configuration for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdate.json similarity index 96% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdate.json index b3237ce6f896..3d65c82409fa 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_CreateOrUpdate.json @@ -1,5 +1,5 @@ { - "operationId": "ServerFarmSilos_CreateOrUpdateServerFarmSilo", + "operationId": "ServerFarmSilos_CreateOrUpdate", "title": "Create or update an App Service plan silo", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_DeleteServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_Delete.json similarity index 91% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_DeleteServerFarmSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_Delete.json index 3f401124f34f..abcdf88d7a96 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_DeleteServerFarmSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_Delete.json @@ -1,5 +1,5 @@ { - "operationId": "ServerFarmSilos_DeleteServerFarmSilo", + "operationId": "ServerFarmSilos_Delete", "title": "Delete an App Service plan silo", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_GetServerFarmSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_Get.json similarity index 94% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_GetServerFarmSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_Get.json index 297ee06d59d1..feabbb6728fd 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_GetServerFarmSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_Get.json @@ -1,5 +1,5 @@ { - "operationId": "ServerFarmSilos_GetServerFarmSilo", + "operationId": "ServerFarmSilos_Get", "title": "Get a specific silo for an App Service plan", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_ListServerFarmSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_List.json similarity index 97% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_ListServerFarmSilos.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_List.json index a139ca215a85..dc24942f0dce 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_ListServerFarmSilos.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/ServerFarmSilos_List.json @@ -1,5 +1,5 @@ { - "operationId": "ServerFarmSilos_ListServerFarmSilos", + "operationId": "ServerFarmSilos_List", "title": "Get all silos for an App Service plan", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdateSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdate.json similarity index 98% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdateSiteSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdate.json index 1a194d223121..345151090843 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdateSiteSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_CreateOrUpdate.json @@ -1,5 +1,5 @@ { - "operationId": "SiteSilos_CreateOrUpdateSiteSilo", + "operationId": "SiteSilos_CreateOrUpdate", "title": "Create or update a web app silo", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_DeleteSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_Delete.json similarity index 93% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_DeleteSiteSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_Delete.json index 07ba72b78847..9bf1e3323a36 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_DeleteSiteSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_Delete.json @@ -1,5 +1,5 @@ { - "operationId": "SiteSilos_DeleteSiteSilo", + "operationId": "SiteSilos_Delete", "title": "Delete a web app silo", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_GetSiteSilo.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_Get.json similarity index 97% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_GetSiteSilo.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_Get.json index e82ae93d3db0..07e0e2afc639 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_GetSiteSilo.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_Get.json @@ -1,5 +1,5 @@ { - "operationId": "SiteSilos_GetSiteSilo", + "operationId": "SiteSilos_Get", "title": "Get a specific silo for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_ListSiteSilos.json b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_List.json similarity index 98% rename from specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_ListSiteSilos.json rename to specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_List.json index 4ecb64e0ad65..5e925661c3b7 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_ListSiteSilos.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/examples/2026-06-01-preview/SiteSilos_List.json @@ -1,5 +1,5 @@ { - "operationId": "SiteSilos_ListSiteSilos", + "operationId": "SiteSilos_List", "title": "Get all silos for a web app", "parameters": { "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Get.json new file mode 100644 index 000000000000..c9c73f099059 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Get.json @@ -0,0 +1,24 @@ +{ + "operationId": "LastKnownGoods_Get", + "title": "Get the current Last Known Good revision for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "lkgName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/lastKnownGood/default", + "name": "default", + "type": "Microsoft.Web/sites/lastKnownGood", + "properties": { + "siteName": "sitef6141", + "createdTime": "2026-01-15T10:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Mark.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Mark.json new file mode 100644 index 000000000000..fe89e964ffa9 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/LastKnownGoods_Mark.json @@ -0,0 +1,24 @@ +{ + "operationId": "LastKnownGoods_Mark", + "title": "Mark the current site state as Last Known Good", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "lkgName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/lastKnownGood/default", + "name": "default", + "type": "Microsoft.Web/sites/lastKnownGood", + "properties": { + "siteName": "sitef6141", + "createdTime": "2026-04-22T14:30:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Get.json new file mode 100644 index 000000000000..d1acb3912561 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Get.json @@ -0,0 +1,38 @@ +{ + "operationId": "ManagedTrafficConfigs_Get", + "title": "Get the managed traffic configuration for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "configName": "default", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ], + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Update.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Update.json new file mode 100644 index 000000000000..586a616e3df8 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ManagedTrafficConfigs_Update.json @@ -0,0 +1,57 @@ +{ + "operationId": "ManagedTrafficConfigs_Update", + "title": "Update the managed traffic configuration for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "configName": "default", + "api-version": "2026-06-01-preview", + "resource": { + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ] + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/managedTrafficConfig/default", + "name": "default", + "type": "Microsoft.Web/sites/managedTrafficConfig", + "properties": { + "trafficMode": "Active", + "endpoints": [ + { + "region": "eastus", + "priority": 1, + "weight": 700, + "isWeightAutoComputed": false + }, + { + "region": "westeurope", + "priority": 2, + "weight": 300, + "isWeightAutoComputed": false + } + ], + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdate.json new file mode 100644 index 000000000000..3d65c82409fa --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_CreateOrUpdate.json @@ -0,0 +1,59 @@ +{ + "operationId": "ServerFarmSilos_CreateOrUpdate", + "title": "Create or update an App Service plan silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview", + "resource": { + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "InProgress", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T10:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Delete.json new file mode 100644 index 000000000000..abcdf88d7a96 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Delete.json @@ -0,0 +1,19 @@ +{ + "operationId": "ServerFarmSilos_Delete", + "title": "Delete an App Service plan silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus/operationresults/00000000-0000-0000-0000-000000000000?api-version=2026-06-01-preview" + } + }, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Get.json new file mode 100644 index 000000000000..feabbb6728fd --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_Get.json @@ -0,0 +1,31 @@ +{ + "operationId": "ServerFarmSilos_Get", + "title": "Get a specific silo for an App Service plan", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_List.json new file mode 100644 index 000000000000..dc24942f0dce --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/ServerFarmSilos_List.json @@ -0,0 +1,50 @@ +{ + "operationId": "ServerFarmSilos_List", + "title": "Get all silos for an App Service plan", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "testsf6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 3, + "zoneRedundantOverride": true, + "provisioningState": "Succeeded", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141/silos/silo-westus", + "name": "silo-westus", + "type": "Microsoft.Web/serverfarms/silos", + "location": "West US", + "properties": { + "siloLocation": "West US", + "primaryServerFarmName": "testsf6141", + "primaryLocation": "West US", + "instanceNumberOverride": 2, + "zoneRedundantOverride": false, + "provisioningState": "Succeeded", + "createdTime": "2026-01-10T08:00:00Z", + "lastModifiedTime": "2026-01-10T09:00:00Z" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdate.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdate.json new file mode 100644 index 000000000000..345151090843 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_CreateOrUpdate.json @@ -0,0 +1,97 @@ +{ + "operationId": "SiteSilos_CreateOrUpdate", + "title": "Create or update a web app silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview", + "resource": { + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true, + "provisioningState": "InProgress", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "CheckingEndpoint", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T10:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Delete.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Delete.json new file mode 100644 index 000000000000..9bf1e3323a36 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Delete.json @@ -0,0 +1,19 @@ +{ + "operationId": "SiteSilos_Delete", + "title": "Delete a web app silo", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus/operationresults/00000000-0000-0000-0000-000000000000?api-version=2026-06-01-preview" + } + }, + "204": {} + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Get.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Get.json new file mode 100644 index 000000000000..07e0e2afc639 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_Get.json @@ -0,0 +1,45 @@ +{ + "operationId": "SiteSilos_Get", + "title": "Get a specific silo for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "siloName": "silo-eastus", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "networkingOverride": { + "vnetIntegrationOverride": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1" + }, + "appSettingsOverrides": [ + { + "name": "WEBSITE_OVERRIDE_SETTING", + "value": "overrideValue" + } + ], + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_List.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_List.json new file mode 100644 index 000000000000..5e925661c3b7 --- /dev/null +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/examples/SiteSilos_List.json @@ -0,0 +1,60 @@ +{ + "operationId": "SiteSilos_List", + "title": "Get all silos for a web app", + "parameters": { + "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", + "resourceGroupName": "testrg123", + "name": "sitef6141", + "api-version": "2026-06-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-eastus", + "name": "silo-eastus", + "type": "Microsoft.Web/sites/silos", + "location": "East US", + "properties": { + "siloLocation": "East US", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "followLkg": true, + "provisioningState": "Succeeded", + "revisionId": "rev-001", + "defaultHostName": "sitef6141-silo-eastus.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-15T10:00:00Z", + "lastModifiedTime": "2026-01-15T12:00:00Z" + } + }, + { + "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/sites/sitef6141/silos/silo-westeurope", + "name": "silo-westeurope", + "type": "Microsoft.Web/sites/silos", + "location": "West Europe", + "properties": { + "siloLocation": "West Europe", + "primarySiteName": "sitef6141", + "primaryLocation": "West US", + "endpointStatus": "Enabled", + "trafficMode": "Active", + "followLkg": false, + "provisioningState": "Succeeded", + "revisionId": "rev-002", + "defaultHostName": "sitef6141-silo-westeurope.azurewebsites.net", + "globalHostName": "sitef6141.trafficmanager.net", + "monitorStatus": "Online", + "createdTime": "2026-01-10T08:00:00Z", + "lastModifiedTime": "2026-01-10T09:00:00Z" + } + } + ] + } + } + } +} diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json index bab95cf6a687..c28cf337fbae 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json +++ b/specification/web/resource-manager/Microsoft.Web/AppService/preview/2026-06-01-preview/openapi.json @@ -6625,7 +6625,7 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/silos": { "get": { - "operationId": "ServerFarmSilos_ListServerFarmSilos", + "operationId": "ServerFarmSilos_List", "tags": [ "AppServicePlans" ], @@ -6665,7 +6665,7 @@ }, "x-ms-examples": { "Get all silos for an App Service plan": { - "$ref": "./examples/ServerFarmSilos_ListServerFarmSilos.json" + "$ref": "./examples/ServerFarmSilos_List.json" } }, "x-ms-pageable": { @@ -6675,7 +6675,7 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/silos/{siloName}": { "get": { - "operationId": "ServerFarmSilos_GetServerFarmSilo", + "operationId": "ServerFarmSilos_Get", "tags": [ "AppServicePlans" ], @@ -6723,12 +6723,12 @@ }, "x-ms-examples": { "Get a specific silo for an App Service plan": { - "$ref": "./examples/ServerFarmSilos_GetServerFarmSilo.json" + "$ref": "./examples/ServerFarmSilos_Get.json" } } }, "put": { - "operationId": "ServerFarmSilos_CreateOrUpdateServerFarmSilo", + "operationId": "ServerFarmSilos_CreateOrUpdate", "tags": [ "AppServicePlans" ], @@ -6802,7 +6802,7 @@ }, "x-ms-examples": { "Create or update an App Service plan silo": { - "$ref": "./examples/ServerFarmSilos_CreateOrUpdateServerFarmSilo.json" + "$ref": "./examples/ServerFarmSilos_CreateOrUpdate.json" } }, "x-ms-long-running-operation-options": { @@ -6812,7 +6812,7 @@ "x-ms-long-running-operation": true }, "delete": { - "operationId": "ServerFarmSilos_DeleteServerFarmSilo", + "operationId": "ServerFarmSilos_Delete", "tags": [ "AppServicePlans" ], @@ -6871,7 +6871,7 @@ }, "x-ms-examples": { "Delete an App Service plan silo": { - "$ref": "./examples/ServerFarmSilos_DeleteServerFarmSilo.json" + "$ref": "./examples/ServerFarmSilos_Delete.json" } }, "x-ms-long-running-operation-options": { @@ -16157,7 +16157,7 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/lastKnownGood/{lkgName}": { "get": { - "operationId": "LastKnownGoods_GetLastKnownGood", + "operationId": "LastKnownGoods_Get", "tags": [ "WebApps" ], @@ -16205,14 +16205,14 @@ }, "x-ms-examples": { "Get the current Last Known Good revision for a web app": { - "$ref": "./examples/LastKnownGoods_GetLastKnownGood.json" + "$ref": "./examples/LastKnownGoods_Get.json" } } } }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/lastKnownGood/{lkgName}/mark": { "post": { - "operationId": "LastKnownGoods_MarkLastKnownGood", + "operationId": "LastKnownGoods_Mark", "tags": [ "WebApps" ], @@ -16260,7 +16260,7 @@ }, "x-ms-examples": { "Mark the current site state as Last Known Good": { - "$ref": "./examples/LastKnownGoods_MarkLastKnownGood.json" + "$ref": "./examples/LastKnownGoods_Mark.json" } } } @@ -16406,7 +16406,7 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/managedTrafficConfig/{configName}": { "get": { - "operationId": "ManagedTrafficConfigs_GetManagedTrafficConfig", + "operationId": "ManagedTrafficConfigs_Get", "tags": [ "WebApps" ], @@ -16454,12 +16454,12 @@ }, "x-ms-examples": { "Get the managed traffic configuration for a web app": { - "$ref": "./examples/ManagedTrafficConfigs_GetManagedTrafficConfig.json" + "$ref": "./examples/ManagedTrafficConfigs_Get.json" } } }, "put": { - "operationId": "ManagedTrafficConfigs_UpdateManagedTrafficConfig", + "operationId": "ManagedTrafficConfigs_Update", "tags": [ "WebApps" ], @@ -16516,7 +16516,7 @@ }, "x-ms-examples": { "Update the managed traffic configuration for a web app": { - "$ref": "./examples/ManagedTrafficConfigs_UpdateManagedTrafficConfig.json" + "$ref": "./examples/ManagedTrafficConfigs_Update.json" } } } @@ -19228,7 +19228,7 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/silos": { "get": { - "operationId": "SiteSilos_ListSiteSilos", + "operationId": "SiteSilos_List", "tags": [ "WebApps" ], @@ -19268,7 +19268,7 @@ }, "x-ms-examples": { "Get all silos for a web app": { - "$ref": "./examples/SiteSilos_ListSiteSilos.json" + "$ref": "./examples/SiteSilos_List.json" } }, "x-ms-pageable": { @@ -19278,7 +19278,7 @@ }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/silos/{siloName}": { "get": { - "operationId": "SiteSilos_GetSiteSilo", + "operationId": "SiteSilos_Get", "tags": [ "WebApps" ], @@ -19326,12 +19326,12 @@ }, "x-ms-examples": { "Get a specific silo for a web app": { - "$ref": "./examples/SiteSilos_GetSiteSilo.json" + "$ref": "./examples/SiteSilos_Get.json" } } }, "put": { - "operationId": "SiteSilos_CreateOrUpdateSiteSilo", + "operationId": "SiteSilos_CreateOrUpdate", "tags": [ "WebApps" ], @@ -19405,7 +19405,7 @@ }, "x-ms-examples": { "Create or update a web app silo": { - "$ref": "./examples/SiteSilos_CreateOrUpdateSiteSilo.json" + "$ref": "./examples/SiteSilos_CreateOrUpdate.json" } }, "x-ms-long-running-operation-options": { @@ -19415,7 +19415,7 @@ "x-ms-long-running-operation": true }, "delete": { - "operationId": "SiteSilos_DeleteSiteSilo", + "operationId": "SiteSilos_Delete", "tags": [ "WebApps" ], @@ -19474,7 +19474,7 @@ }, "x-ms-examples": { "Delete a web app silo": { - "$ref": "./examples/SiteSilos_DeleteSiteSilo.json" + "$ref": "./examples/SiteSilos_Delete.json" } }, "x-ms-long-running-operation-options": { From 3d922c41436e6df1e22c11df167d59d1eb47ad09 Mon Sep 17 00:00:00 2001 From: Christina Riachi Date: Thu, 23 Apr 2026 09:31:41 -0700 Subject: [PATCH 10/10] fix formatting --- .../Microsoft.Web/AppService/SiteSilo.tsp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp index 9cf0e7e9cbfd..6a816b761c8f 100644 --- a/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp +++ b/specification/web/resource-manager/Microsoft.Web/AppService/SiteSilo.tsp @@ -66,10 +66,7 @@ interface SiteSilos { * Get a specific silo for a web app. */ @summary("Get a specific silo for a web app.") - get is SiteSiloOps.Read< - SiteSilo, - OverrideErrorType = DefaultErrorResponse - >; + get is SiteSiloOps.Read; /** * Create or update a web app silo. @@ -102,6 +99,4 @@ interface SiteSilos { @@doc(SiteSilo.name, "Name of the silo."); @@doc(SiteSilo.properties, "SiteSilo resource specific properties"); -@@doc(SiteSilos.createOrUpdate::parameters.resource, - "Details of the silo." -); +@@doc(SiteSilos.createOrUpdate::parameters.resource, "Details of the silo.");