swagger: '2.0' info: version: '2023-01-01' title: Microsoft Azure StaticSites API Client host: management.azure.com schemes: - https consumes: - application/json produces: - application/json paths: /subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/previewStaticSiteWorkflowFile: post: tags: - StaticSites summary: Microsoft Azure Generates A Preview Workflow File For The Static Site description: Description for Generates a preview workflow file for the static site operationId: microsoftAzureStaticsitesPreviewworkflow parameters: - name: location in: path description: Location where you plan to create the static site. required: true type: string - name: staticSitesWorkflowPreviewRequest in: body description: >- A JSON representation of the StaticSitesWorkflowPreviewRequest properties. See example. required: true schema: $ref: '#/definitions/StaticSitesWorkflowPreviewRequest' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSitesWorkflowPreview' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Generates a preview workflow file for the static site: $ref: ./examples/GenerateStaticSiteWorkflowPreview.json /subscriptions/{subscriptionId}/providers/Microsoft.Web/staticSites: get: tags: - StaticSites summary: 'Microsoft Azure Get All Static Sites For A Subscription' description: Description for Get all Static Sites for a subscription. operationId: microsoftAzureStaticsitesList parameters: - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get all static sites in a subscription: $ref: ./examples/GetAllStaticSites.json x-ms-pageable: nextLinkName: nextLink /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites: get: tags: - StaticSites summary: 'Microsoft Azure Gets All Static Sites In The Specified Resource Group' description: Description for Gets all static sites in the specified resource group. operationId: microsoftAzureStaticsitesGetstaticsitesbyresourcegroup parameters: - $ref: '#/parameters/resourceGroupNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Gets The Details Of A Static Site' description: Description for Gets the details of a static site. operationId: microsoftAzureStaticsitesGetstaticsite parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get details for a static site: $ref: ./examples/GetStaticSite.json put: tags: - StaticSites summary: >- Microsoft Azure 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. operationId: microsoftAzureStaticsitesCreateorupdatestaticsite parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site to create or update. required: true type: string - name: staticSiteEnvelope in: body description: A JSON representation of the staticsite properties. See example. required: true schema: $ref: '#/definitions/StaticSiteARMResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteARMResource' '202': description: Asynchronous operation in progress. schema: $ref: '#/definitions/StaticSiteARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Create or update a static site: $ref: ./examples/CreateOrUpdateStaticSite.json x-ms-long-running-operation: true delete: tags: - StaticSites summary: 'Microsoft Azure Deletes A Static Site' description: Description for Deletes a static site. operationId: microsoftAzureStaticsitesDeletestaticsite parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site to delete. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '202': description: Asynchronous operation in progress. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Delete a static site: $ref: ./examples/DeleteStaticSite.json x-ms-long-running-operation: true patch: tags: - StaticSites summary: >- Microsoft Azure 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. operationId: microsoftAzureStaticsitesUpdatestaticsite parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site to create or update. required: true type: string - name: staticSiteEnvelope in: body description: A JSON representation of the staticsite properties. See example. required: true schema: $ref: '#/definitions/StaticSitePatchResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteARMResource' '202': description: Asynchronous operation in progress. schema: $ref: '#/definitions/StaticSiteARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Patch a static site: $ref: ./examples/PatchStaticSite.json ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/authproviders/{authprovider}/listUsers : post: tags: - StaticSites summary: 'Microsoft Azure Gets The List Of Users Of A Static Site' description: Description for Gets the list of users of a static site. operationId: microsoftAzureStaticsitesListstaticsiteusers parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: authprovider in: path description: The auth provider for the users. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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} : delete: tags: - StaticSites summary: 'Microsoft Azure Deletes The User Entry From The Static Site' description: Description for Deletes the user entry from the static site. operationId: microsoftAzureStaticsitesDeletestaticsiteuser parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the staticsite. required: true type: string - name: authprovider in: path description: The auth provider for this user. required: true type: string - name: userid in: path description: The user id of the user. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Delete a user for a static site: $ref: ./examples/DeleteStaticSiteUser.json patch: tags: - StaticSites summary: Microsoft Azure Updates A User Entry With The Listed Roles description: Description for Updates a user entry with the listed roles operationId: microsoftAzureStaticsitesUpdatestaticsiteuser parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: authprovider in: path description: The auth provider for this user. required: true type: string - name: userid in: path description: The user id of the user. required: true type: string - name: staticSiteUserEnvelope in: body description: A JSON representation of the StaticSiteUser properties. See example. required: true schema: $ref: '#/definitions/StaticSiteUserARMResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Create or update a user for a static site: $ref: ./examples/UpdateStaticSiteUser.json /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds: get: tags: - StaticSites summary: 'Microsoft Azure Gets All Static Site Builds For A Particular Static Site' description: >- Description for Gets all static site builds for a particular static site. operationId: microsoftAzureStaticsitesGetstaticsitebuilds parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteBuildCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Gets The Details Of A Static Site Build' description: Description for Gets the details of a static site build. operationId: microsoftAzureStaticsitesGetstaticsitebuild parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteBuildARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get a static site build: $ref: ./examples/GetStaticSiteBuild.json delete: tags: - StaticSites summary: 'Microsoft Azure Deletes A Static Site Build' description: Description for Deletes a static site build. operationId: microsoftAzureStaticsitesDeletestaticsitebuild parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '202': description: Asynchronous operation in progress. '204': description: OK. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Delete a static site build: $ref: ./examples/DeleteStaticSiteBuild.json x-ms-long-running-operation: true ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/config/appsettings : put: tags: - StaticSites summary: 'Microsoft Azure 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. operationId: microsoftAzureStaticsitesCreateorupdatestaticsitebuildappsettings parameters: - $ref: '#/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: appSettings in: body description: The dictionary containing the static site app settings to update. required: true schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure 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. operationId: >- microsoftAzureStaticsitesCreateorupdatestaticsitebuildfunctionappsettings parameters: - $ref: '#/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: appSettings in: body description: >- The dictionary containing the static site function app settings to update. required: true schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: Microsoft Azure Returns Overviews Of Database Connections For A Static Site Build operationId: microsoftAzureStaticsitesGetbuilddatabaseconnections parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/environmentNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnectionCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: List overviews of database connections for the static site build.: $ref: ./examples/GetStaticSiteBuildDatabaseConnections.json x-ms-pageable: nextLinkName: nextLink description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/databaseConnections/{databaseConnectionName} : get: tags: - StaticSites summary: >- Microsoft Azure Returns Overview Of A Database Connection For A Static Site Build By Name operationId: microsoftAzureStaticsitesGetbuilddatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/environmentNameParameter' - $ref: '#/parameters/databaseConnectionNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get overview of database connections for the static site build.: $ref: ./examples/GetStaticSiteBuildDatabaseConnection.json description: Needs a more full description created. put: tags: - StaticSites summary: Microsoft Azure 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 operationId: microsoftAzureStaticsitesCreateorupdatebuilddatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/environmentNameParameter' - $ref: '#/parameters/databaseConnectionNameParameter' - name: databaseConnectionRequestEnvelope in: body description: A JSON representation of the database connection request properties required: true schema: $ref: '#/definitions/DatabaseConnection' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Create or update a database connection for a static site build: $ref: ./examples/CreateOrUpdateStaticSiteBuildDatabaseConnection.json delete: tags: - StaticSites summary: Microsoft Azure Delete A Database Connection For A Static Site Build operationId: microsoftAzureStaticsitesDeletebuilddatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/environmentNameParameter' - $ref: '#/parameters/databaseConnectionNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '204': description: No content. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Delete a database connection from a static site build.: $ref: ./examples/DeleteStaticSiteBuildDatabaseConnection.json description: Needs a more full description created. patch: tags: - StaticSites summary: Microsoft Azure 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 operationId: microsoftAzureStaticsitesUpdatebuilddatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/environmentNameParameter' - $ref: '#/parameters/databaseConnectionNameParameter' - name: databaseConnectionRequestEnvelope in: body description: A JSON representation of the database connection request properties required: true schema: $ref: '#/definitions/DatabaseConnectionPatchRequest' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Patch a database connection for a static site build: $ref: ./examples/PatchStaticSiteBuildDatabaseConnection.json ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/databaseConnections/{databaseConnectionName}/show : post: tags: - StaticSites summary: Microsoft Azure Returns Details Of A Database Connection For A Static Site Build By Name operationId: microsoftAzureStaticsitesGetbuilddatabaseconnectionwithdetails parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/environmentNameParameter' - $ref: '#/parameters/databaseConnectionNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get details of database connections for the static site build.: $ref: ./examples/GetStaticSiteBuildDatabaseConnectionWithDetails.json description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/functions : get: tags: - StaticSites summary: 'Microsoft Azure Gets The Functions Of A Particular Static Site Build' description: Description for Gets the functions of a particular static site build. operationId: microsoftAzureStaticsitesListstaticsitebuildfunctions parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteFunctionOverviewCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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}/listAppSettings : post: tags: - StaticSites summary: 'Microsoft Azure Gets The Application Settings Of A Static Site Build' description: Description for Gets the application settings of a static site build. operationId: microsoftAzureStaticsitesListstaticsitebuildappsettings parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Gets The Application Settings Of A Static Site Build' description: Description for Gets the application settings of a static site build. operationId: microsoftAzureStaticsitesListstaticsitebuildfunctionappsettings parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: Microsoft Azure Returns Details Of Database Connections For A Static Site Build operationId: microsoftAzureStaticsitesGetbuilddatabaseconnectionswithdetails parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/environmentNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnectionCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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 description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/userProvidedFunctionApps : get: tags: - StaticSites summary: >- Microsoft Azure 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 operationId: microsoftAzureStaticsitesGetuserprovidedfunctionappsforstaticsitebuild parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppsCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: >- Microsoft Azure 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 operationId: microsoftAzureStaticsitesGetuserprovidedfunctionappforstaticsitebuild parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get details of the user provided function app registered with a static site build.: $ref: ./examples/GetUserProvidedFunctionAppForStaticSiteBuild.json put: tags: - StaticSites summary: Microsoft Azure 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 operationId: >- microsoftAzureStaticsitesRegisteruserprovidedfunctionappwithstaticsitebuild parameters: - $ref: '#/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 to register with the static site build. required: true type: string - name: staticSiteUserProvidedFunctionEnvelope in: body description: >- A JSON representation of the user provided function app properties. See example. required: true schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' - 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. type: boolean - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' '202': description: Asynchronous operation in progress. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: true delete: tags: - StaticSites summary: Microsoft Azure 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 operationId: >- microsoftAzureStaticsitesDetachuserprovidedfunctionappfromstaticsitebuild parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '204': description: No content. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure 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. operationId: microsoftAzureStaticsitesCreatezipdeploymentforstaticsitebuild parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: environmentName in: path description: Name of the environment. required: true type: string - name: staticSiteZipDeploymentEnvelope in: body description: >- A JSON representation of the StaticSiteZipDeployment properties. See example. required: true schema: $ref: '#/definitions/StaticSiteZipDeploymentARMResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '202': description: Asynchronous operation in progress. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: true ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/config/appsettings : put: tags: - StaticSites summary: 'Microsoft Azure Creates Or Updates The App Settings Of A Static Site' description: Description for Creates or updates the app settings of a static site. operationId: microsoftAzureStaticsitesCreateorupdatestaticsiteappsettings parameters: - $ref: '#/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: ./CommonDefinitions.json#/definitions/StringDictionary - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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}/basicAuth: get: tags: - StaticSites summary: 'Microsoft Azure 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. operationId: microsoftAzureStaticsitesListbasicauth parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteBasicAuthPropertiesCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Gets The Basic Auth Properties For A Static Site' description: Description for Gets the basic auth properties for a static site. operationId: microsoftAzureStaticsitesGetbasicauth parameters: - $ref: '#/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 pattern: default enum: - default x-ms-enum: name: BasicAuthName modelAsString: true - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteBasicAuthPropertiesARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Gets the basic auth properties for a static site.: $ref: ./examples/GetStaticSiteBasicAuth.json put: tags: - StaticSites summary: 'Microsoft Azure Adds Or Updates Basic Auth For A Static Site' description: Description for Adds or updates basic auth for a static site. operationId: microsoftAzureStaticsitesCreateorupdatebasicauth parameters: - $ref: '#/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 pattern: default enum: - default x-ms-enum: name: BasicAuthName modelAsString: true - name: basicAuthEnvelope in: body description: A JSON representation of the basic auth properties. required: true schema: $ref: '#/definitions/StaticSiteBasicAuthPropertiesARMResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteBasicAuthPropertiesARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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}/config/functionappsettings : put: tags: - StaticSites summary: 'Microsoft Azure 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. operationId: microsoftAzureStaticsitesCreateorupdatestaticsitefunctionappsettings parameters: - $ref: '#/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: ./CommonDefinitions.json#/definitions/StringDictionary - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: Microsoft Azure Creates An Invitation Link For A User With The Role description: Description for Creates an invitation link for a user with the role operationId: microsoftAzureStaticsitesCreateuserrolesinvitationlink parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: staticSiteUserRolesInvitationEnvelope in: body required: true schema: $ref: '#/definitions/StaticSiteUserInvitationRequestResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserInvitationResponseResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure 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. operationId: microsoftAzureStaticsitesListstaticsitecustomdomains parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site resource to search in. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteCustomDomainOverviewCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Gets An Existing Custom Domain For A Particular Static Site' description: >- Description for Gets an existing custom domain for a particular static site. operationId: microsoftAzureStaticsitesGetstaticsitecustomdomain parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site resource to search in. required: true type: string - name: domainName in: path description: The custom domain name. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteCustomDomainOverviewARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get custom domain for a static site: $ref: ./examples/GetStaticSiteCustomDomain.json put: tags: - StaticSites summary: >- Microsoft Azure 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. operationId: microsoftAzureStaticsitesCreateorupdatestaticsitecustomdomain parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: domainName in: path description: The custom domain to create. 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' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteCustomDomainOverviewARMResource' '202': description: Asynchronous operation in progress. schema: $ref: '#/definitions/StaticSiteCustomDomainOverviewARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Create or update a custom domain for a static site: $ref: ./examples/CreateOrUpdateStaticSiteCustomDomain.json x-ms-long-running-operation: true delete: tags: - StaticSites summary: 'Microsoft Azure Deletes A Custom Domain' description: Description for Deletes a custom domain. operationId: microsoftAzureStaticsitesDeletestaticsitecustomdomain parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: domainName in: path description: The custom domain to delete. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '202': description: Asynchronous operation in progress. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Delete a custom domain for a static site: $ref: ./examples/DeleteStaticSiteCustomDomain.json x-ms-long-running-operation: true ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/customDomains/{domainName}/validate : post: tags: - StaticSites summary: 'Microsoft Azure 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. operationId: microsoftAzureStaticsitesValidatecustomdomaincanbeaddedtostaticsite parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: domainName in: path description: The custom domain to validate. 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' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '202': description: Asynchronous operation in progress. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Validate a custom domain for a static site: $ref: ./examples/ValidateStaticSiteCustomDomain.json x-ms-long-running-operation: true ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/databaseConnections : get: tags: - StaticSites summary: Microsoft Azure Returns Overviews Of Database Connections For A Static Site operationId: microsoftAzureStaticsitesGetdatabaseconnections parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnectionCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: List overviews of database connections for the static site.: $ref: ./examples/GetStaticSiteDatabaseConnections.json x-ms-pageable: nextLinkName: nextLink description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/databaseConnections/{databaseConnectionName} : get: tags: - StaticSites summary: Microsoft Azure Returns Overview Of A Database Connection For A Static Site By Name operationId: microsoftAzureStaticsitesGetdatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/databaseConnectionNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get overview of database connections for the static site.: $ref: ./examples/GetStaticSiteDatabaseConnection.json description: Needs a more full description created. put: tags: - StaticSites summary: Microsoft Azure Create Or Update A Database Connection For A Static Site description: Description for Create or update a database connection for a static site operationId: microsoftAzureStaticsitesCreateorupdatedatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/databaseConnectionNameParameter' - name: databaseConnectionRequestEnvelope in: body description: A JSON representation of the database connection request properties required: true schema: $ref: '#/definitions/DatabaseConnection' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Create or update a database connection for a static site: $ref: ./examples/CreateOrUpdateStaticSiteDatabaseConnection.json delete: tags: - StaticSites summary: Microsoft Azure Delete A Database Connection For A Static Site operationId: microsoftAzureStaticsitesDeletedatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/databaseConnectionNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '204': description: No content. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Delete a database connection from a static site.: $ref: ./examples/DeleteStaticSiteDatabaseConnection.json description: Needs a more full description created. patch: tags: - StaticSites summary: Microsoft Azure Create Or Update A Database Connection For A Static Site description: Description for Create or update a database connection for a static site operationId: microsoftAzureStaticsitesUpdatedatabaseconnection parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/databaseConnectionNameParameter' - name: databaseConnectionRequestEnvelope in: body description: A JSON representation of the database connection request properties required: true schema: $ref: '#/definitions/DatabaseConnectionPatchRequest' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Patch a database connection for a static site: $ref: ./examples/PatchStaticSiteDatabaseConnection.json ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/databaseConnections/{databaseConnectionName}/show : post: tags: - StaticSites summary: Microsoft Azure Returns Details Of A Database Connection For A Static Site By Name operationId: microsoftAzureStaticsitesGetdatabaseconnectionwithdetails parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/databaseConnectionNameParameter' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get details of database connections for the static site.: $ref: ./examples/GetStaticSiteDatabaseConnectionWithDetails.json description: Needs a more full description created. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/detach: post: tags: - StaticSites summary: 'Microsoft Azure Detaches A Static Site' description: Description for Detaches a static site. operationId: microsoftAzureStaticsitesDetachstaticsite parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site to detach. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '202': description: Asynchronous operation in progress. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Detach a static site: $ref: ./examples/DetachStaticSite.json x-ms-long-running-operation: true /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/functions: get: tags: - StaticSites summary: 'Microsoft Azure Gets The Functions Of A Static Site' description: Description for Gets the functions of a static site. operationId: microsoftAzureStaticsitesListstaticsitefunctions parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteFunctionOverviewCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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}/listAppSettings : post: tags: - StaticSites summary: 'Microsoft Azure Gets The Application Settings Of A Static Site' description: Description for Gets the application settings of a static site. operationId: microsoftAzureStaticsitesListstaticsiteappsettings parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Lists The Roles Configured For The Static Site' description: Description for Lists the roles configured for the static site. operationId: microsoftAzureStaticsitesListstaticsiteconfiguredroles parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StringList' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Gets The Application Settings Of A Static Site' description: Description for Gets the application settings of a static site. operationId: microsoftAzureStaticsitesListstaticsitefunctionappsettings parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Lists The Secrets For An Existing Static Site' description: Description for Lists the secrets for an existing static site. operationId: microsoftAzureStaticsitesListstaticsitesecrets parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: ./CommonDefinitions.json#/definitions/StringDictionary default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: >- Microsoft Azure 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 operationId: microsoftAzureStaticsitesGetprivateendpointconnectionlist parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: >- ./CommonDefinitions.json#/definitions/PrivateEndpointConnectionCollection default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: Microsoft Azure Gets A Private Endpoint Connection description: Description for Gets a private endpoint connection operationId: microsoftAzureStaticsitesGetprivateendpointconnection parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: >- ./CommonDefinitions.json#/definitions/RemotePrivateEndpointConnectionARMResource default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get a private endpoint connection for a site.: $ref: ./examples/GetSitePrivateEndpointConnection.json put: tags: - StaticSites summary: Microsoft Azure Approves Or Rejects A Private Endpoint Connection description: Description for Approves or rejects a private endpoint connection operationId: microsoftAzureStaticsitesApproveorrejectprivateendpointconnection parameters: - $ref: '#/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: >- ./CommonDefinitions.json#/definitions/RemotePrivateEndpointConnectionARMResource - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: >- ./CommonDefinitions.json#/definitions/RemotePrivateEndpointConnectionARMResource '202': description: Asynchronous operation in progress. schema: $ref: >- ./CommonDefinitions.json#/definitions/RemotePrivateEndpointConnectionARMResource default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Approves or rejects a private endpoint connection for a site.: $ref: ./examples/ApproveRejectSitePrivateEndpointConnection.json x-ms-long-running-operation: true delete: tags: - StaticSites summary: Microsoft Azure Deletes A Private Endpoint Connection description: Description for Deletes a private endpoint connection operationId: microsoftAzureStaticsitesDeleteprivateendpointconnection parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: type: object '202': description: Asynchronous operation in progress. schema: type: object '204': description: No content. schema: type: object default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Delete a private endpoint connection for a site.: $ref: ./examples/DeleteSitePrivateEndpointConnection.json x-ms-long-running-operation: true ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/privateLinkResources : get: tags: - StaticSites summary: Microsoft Azure Gets The Private Link Resources description: Description for Gets the private link resources operationId: microsoftAzureStaticsitesGetprivatelinkresources parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: ./CommonDefinitions.json#/definitions/PrivateLinkResourcesWrapper default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Resets The Api Key For An Existing Static Site' description: Description for Resets the api key for an existing static site. operationId: microsoftAzureStaticsitesResetstaticsiteapikey parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - name: resetPropertiesEnvelope in: body required: true schema: $ref: '#/definitions/StaticSiteResetPropertiesARMResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: Microsoft Azure Returns Details Of Database Connections For A Static Site operationId: microsoftAzureStaticsitesGetdatabaseconnectionswithdetails parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DatabaseConnectionCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: List full details of database connections for the static site.: $ref: ./examples/GetStaticSiteDatabaseConnectionsWithDetails.json x-ms-pageable: nextLinkName: nextLink description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/userProvidedFunctionApps : get: tags: - StaticSites summary: >- Microsoft Azure 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 operationId: microsoftAzureStaticsitesGetuserprovidedfunctionappsforstaticsite parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site. required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppsCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: >- Microsoft Azure 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 operationId: microsoftAzureStaticsitesGetuserprovidedfunctionappforstaticsite parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get details of the user provided function app registered with a static site.: $ref: ./examples/GetUserProvidedFunctionAppForStaticSite.json put: tags: - StaticSites summary: Microsoft Azure Register A User Provided Function App With A Static Site description: Description for Register a user provided function app with a static site operationId: microsoftAzureStaticsitesRegisteruserprovidedfunctionappwithstaticsite parameters: - $ref: '#/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 to register with the static site. required: true type: string - name: staticSiteUserProvidedFunctionEnvelope in: body description: >- A JSON representation of the user provided function app properties. See example. required: true schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' - 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. type: boolean - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' '202': description: Asynchronous operation in progress. schema: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Register a user provided function app with a static site: $ref: ./examples/RegisterUserProvidedFunctionAppWithStaticSite.json x-ms-long-running-operation: true delete: tags: - StaticSites summary: Microsoft Azure Detach The User Provided Function App From The Static Site description: >- Description for Detach the user provided function app from the static site operationId: microsoftAzureStaticsitesDetachuserprovidedfunctionappfromstaticsite parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '204': description: No content. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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: tags: - StaticSites summary: 'Microsoft Azure Deploys Zipped Content To A Static Site' description: Description for Deploys zipped content to a static site. operationId: microsoftAzureStaticsitesCreatezipdeploymentforstaticsite parameters: - $ref: '#/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' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '202': description: Asynchronous operation in progress. default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Deploy a site from a zipped package: $ref: ./examples/StaticSiteZipDeploy.json x-ms-long-running-operation: true ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/linkedBackends/{linkedBackendName}/validate : post: tags: - StaticSites summary: Microsoft Azure Validates That A Backend Can Be Linked To A Static Site operationId: microsoftAzureStaticsitesValidatebackend parameters: - $ref: '#/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' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '202': description: Asynchronous operation in progress. '204': description: No content default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Validate if backend can be linked to static site.: $ref: ./examples/ValidateLinkedBackendForStaticSite.json x-ms-long-running-operation: true description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/linkedBackends/{linkedBackendName}/validate : post: tags: - StaticSites summary: Microsoft Azure Validates That A Backend Can Be Linked To A Static Site Build operationId: microsoftAzureStaticsitesValidatebackendforbuild parameters: - $ref: '#/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' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '202': description: Asynchronous operation in progress. '204': description: No content default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Validate if backend can be linked to static site build.: $ref: ./examples/ValidateLinkedBackendForStaticSiteBuild.json x-ms-long-running-operation: true description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/linkedBackends : get: tags: - StaticSites summary: Microsoft Azure Returns Details Of All Backends Linked To A Static Site operationId: microsoftAzureStaticsitesGetlinkedbackends parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteLinkedBackendsCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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 description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/linkedBackends : get: tags: - StaticSites summary: Microsoft Azure Returns Details Of All Backends Linked To A Static Site Build operationId: microsoftAzureStaticsitesGetlinkedbackendsforbuild parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteLinkedBackendsCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/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 description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/linkedBackends/{linkedBackendName} : get: tags: - StaticSites summary: Microsoft Azure Returns The Details Of A Linked Backend Linked To A Static Site By Name operationId: microsoftAzureStaticsitesGetlinkedbackend parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteLinkedBackendARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get details of the linked backend registered with a static site by name.: $ref: ./examples/GetLinkedBackendForStaticSite.json description: Needs a more full description created. put: tags: - StaticSites summary: Microsoft Azure Link Backend To A Static Site operationId: microsoftAzureStaticsitesLinkbackend parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - name: linkedBackendName in: path description: Name of the backend to link to the static site required: true type: string - name: staticSiteLinkedBackendEnvelope in: body description: A JSON representation of the linked backend request properties required: true schema: $ref: '#/definitions/StaticSiteLinkedBackendARMResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteLinkedBackendARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Link a backend to a static site: $ref: ./examples/LinkBackendToStaticSite.json x-ms-long-running-operation: true description: Needs a more full description created. delete: tags: - StaticSites summary: Microsoft Azure Unlink A Backend From A Static Site operationId: microsoftAzureStaticsitesUnlinkbackend parameters: - $ref: '#/parameters/resourceGroupNameParameter' - name: name in: path description: Name of the static site required: true type: string - name: linkedBackendName in: path description: Name of the backend linked to the static site required: true type: string - name: isCleaningAuthConfig in: query description: >- Decides if Easy Auth configuration will be removed from backend configuration type: boolean - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '204': description: No content default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Unlink a backend from a static site.: $ref: ./examples/UnlinkBackendFromStaticSite.json description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/builds/{environmentName}/linkedBackends/{linkedBackendName} : get: tags: - StaticSites summary: >- Microsoft Azure Returns The Details Of A Linked Backend Linked To A Static Site Build By Name operationId: microsoftAzureStaticsitesGetlinkedbackendforbuild parameters: - $ref: '#/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 - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteLinkedBackendARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get details of the linked backend registered with a static site build by name.: $ref: ./examples/GetLinkedBackendForStaticSiteBuild.json description: Needs a more full description created. put: tags: - StaticSites summary: Microsoft Azure Link Backend To A Static Site Build operationId: microsoftAzureStaticsitesLinkbackendtobuild parameters: - $ref: '#/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 backend to link to the static site required: true type: string - name: staticSiteLinkedBackendEnvelope in: body description: A JSON representation of the linked backend request properties required: true schema: $ref: '#/definitions/StaticSiteLinkedBackendARMResource' - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/StaticSiteLinkedBackendARMResource' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Link a backend to a static site build: $ref: ./examples/LinkBackendToStaticSiteBuild.json x-ms-long-running-operation: true description: Needs a more full description created. delete: tags: - StaticSites summary: Microsoft Azure Unlink A Backend From A Static Site Build operationId: microsoftAzureStaticsitesUnlinkbackendfrombuild parameters: - $ref: '#/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 backend linked to the static site required: true type: string - name: isCleaningAuthConfig in: query description: Decides if auth will be removed from backend configuration type: boolean - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK. '204': description: No content default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Unlink a backend from a static site build.: $ref: ./examples/UnlinkBackendFromStaticSiteBuild.json description: Needs a more full description created. definitions: ArmPlan: description: The plan object in Azure Resource Manager, represents a marketplace plan. type: object properties: name: description: The name. type: string publisher: description: The publisher. type: string product: description: The product. type: string promotionCode: description: The promotion code. type: string version: description: Version of product. type: string RemotePrivateEndpointConnection: description: A remote private endpoint connection type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: RemotePrivateEndpointConnection resource specific properties type: object properties: provisioningState: type: string readOnly: true privateEndpoint: $ref: ./CommonDefinitions.json#/definitions/ArmIdWrapper description: PrivateEndpoint of a remote private endpoint connection privateLinkServiceConnectionState: $ref: ./CommonDefinitions.json#/definitions/PrivateLinkConnectionState ipAddresses: description: Private IPAddresses mapped to the remote private endpoint type: array items: type: string x-ms-client-flatten: true ResponseMessageEnvelope[RemotePrivateEndpointConnection]: description: >- Message envelope that contains the common Azure resource manager properties and the resource provider specific content. type: object properties: id: description: >- Resource Id. Typically ID is populated only for responses to GET requests. Caller is responsible for passing in this value for GET requests only. For example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupId}/providers/Microsoft.Web/sites/{sitename} type: string name: description: Name of resource. type: string type: description: Type of resource e.g "Microsoft.Web/sites". type: string location: description: >- Geographical region resource belongs to e.g. SouthCentralUS, SouthEastAsia. type: string tags: description: Tags associated with resource. type: object additionalProperties: type: string plan: $ref: '#/definitions/ArmPlan' description: Azure resource manager plan. properties: $ref: '#/definitions/RemotePrivateEndpointConnection' description: Resource specific properties. sku: $ref: ./CommonDefinitions.json#/definitions/SkuDescription description: SKU description of the resource. status: description: Azure-AsyncOperation Status info. type: string error: $ref: ./CommonDefinitions.json#/definitions/ErrorEntity description: Azure-AsyncOperation Error info. identity: $ref: ./CommonDefinitions.json#/definitions/ManagedServiceIdentity description: MSI resource zones: description: Logical Availability Zones the service is hosted in type: array items: type: string StaticSite: description: A static site. type: object properties: defaultHostname: description: The default autogenerated hostname for the static site. type: string readOnly: true repositoryUrl: description: URL for the repository of the static site. type: string branch: description: The target branch in the repository. type: string customDomains: description: The custom domains associated with this static site. type: array items: type: string readOnly: true repositoryToken: description: >- A user's github repository token. This is used to setup the Github Actions workflow file and API secrets. type: string buildProperties: $ref: '#/definitions/StaticSiteBuildProperties' description: Build properties to configure on the repository. privateEndpointConnections: description: Private endpoint connections type: array items: $ref: >- #/definitions/ResponseMessageEnvelope[RemotePrivateEndpointConnection] readOnly: true stagingEnvironmentPolicy: description: >- State indicating whether staging environments are allowed or not allowed for a static web app. enum: - Enabled - Disabled type: string x-ms-enum: name: StagingEnvironmentPolicy modelAsString: false allowConfigFileUpdates: description: >- false if config file is locked for this static web app; otherwise, true. type: boolean templateProperties: $ref: '#/definitions/StaticSiteTemplateOptions' description: Template options for generating a new repository. contentDistributionEndpoint: description: The content distribution endpoint for the static site. type: string readOnly: true keyVaultReferenceIdentity: description: Identity to use for Key Vault Reference authentication. type: string readOnly: true userProvidedFunctionApps: description: User provided function apps registered with the static site type: array items: $ref: '#/definitions/StaticSiteUserProvidedFunctionApp' readOnly: true linkedBackends: description: Backends linked to the static side type: array items: $ref: '#/definitions/StaticSiteLinkedBackend' x-ms-identifiers: [] readOnly: true provider: description: >- The provider that submitted the last deployment to the primary environment of the static site. type: string enterpriseGradeCdnStatus: description: >- State indicating the status of the enterprise grade CDN serving traffic to the static web app. enum: - Enabled - Enabling - Disabled - Disabling type: string x-ms-enum: name: EnterpriseGradeCdnStatus modelAsString: true publicNetworkAccess: description: >- State indicating whether public traffic are allowed or not for a static web app. Allowed Values: 'Enabled', 'Disabled' or an empty string. type: string databaseConnections: description: Database connections for the static site type: array items: $ref: '#/definitions/DatabaseConnectionOverview' x-ms-identifiers: - name readOnly: true StaticSiteARMResource: description: Static Site ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/Resource properties: properties: $ref: '#/definitions/StaticSite' description: Core resource properties type: object x-ms-client-flatten: true sku: $ref: ./CommonDefinitions.json#/definitions/SkuDescription identity: $ref: ./CommonDefinitions.json#/definitions/ManagedServiceIdentity StaticSiteBasicAuthPropertiesARMResource: description: Static site basic auth properties ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteBasicAuthPropertiesARMResource resource specific properties required: - applicableEnvironmentsMode type: object properties: password: description: The password for basic auth. type: string x-ms-secret: true secretUrl: description: Url to the secret in Key Vault. type: string applicableEnvironmentsMode: description: >- State indicating if basic auth is enabled and for what environments it is active. type: string environments: description: >- The list of enabled environments for Basic Auth if ApplicableEnvironmentsMode is set to SpecifiedEnvironments. type: array items: type: string secretState: description: State indicating if basic auth has a secret and what type it is. type: string readOnly: true x-ms-client-flatten: true StaticSiteBasicAuthPropertiesCollection: description: Collection of static site basic auth. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteBasicAuthPropertiesARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true StaticSiteBuildARMResource: description: Static Site Build ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteBuildARMResource resource specific properties type: object properties: buildId: description: An identifier for the static site build. type: string readOnly: true sourceBranch: description: The source branch. type: string readOnly: true pullRequestTitle: description: >- The title of a pull request that a static site build is related to. type: string readOnly: true hostname: description: The hostname for a static site build. type: string readOnly: true createdTimeUtc: format: date-time description: When this build was created. type: string readOnly: true lastUpdatedOn: format: date-time description: When this build was updated. type: string readOnly: true status: description: The status of the static site build. enum: - WaitingForDeployment - Uploading - Deploying - Ready - Failed - Deleting - Detached type: string readOnly: true x-ms-enum: name: BuildStatus modelAsString: true userProvidedFunctionApps: description: User provided function apps registered with the static site build type: array items: $ref: '#/definitions/StaticSiteUserProvidedFunctionApp' readOnly: true linkedBackends: description: Backends linked to the static side build type: array items: $ref: '#/definitions/StaticSiteLinkedBackend' x-ms-identifiers: [] readOnly: true databaseConnections: description: Database connections for the static site build type: array items: $ref: '#/definitions/DatabaseConnectionOverview' x-ms-identifiers: - name readOnly: true x-ms-client-flatten: true StaticSiteBuildCollection: description: Collection of static site builds. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteBuildARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true StaticSiteBuildProperties: description: Build properties for the static site. type: object properties: appLocation: description: The path to the app code within the repository. type: string apiLocation: description: The path to the api code within the repository. type: string appArtifactLocation: description: >- Deprecated: The path of the app artifacts after building (deprecated in favor of OutputLocation) type: string outputLocation: description: The output path of the app after building. type: string appBuildCommand: description: >- A custom command to run during deployment of the static content application. type: string apiBuildCommand: description: >- A custom command to run during deployment of the Azure Functions API application. type: string skipGithubActionWorkflowGeneration: description: Skip Github Action workflow generation. type: boolean githubActionSecretNameOverride: description: Github Action secret name override. type: string StaticSiteCollection: description: Collection of static sites. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true StaticSiteCustomDomainOverviewARMResource: description: Static Site Custom Domain Overview ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteCustomDomainOverviewARMResource resource specific properties type: object properties: domainName: description: The domain name for the static site custom domain. type: string readOnly: true createdOn: format: date-time description: >- The date and time on which the custom domain was created for the static site. type: string readOnly: true status: description: The status of the custom domain enum: - RetrievingValidationToken - Validating - Adding - Ready - Failed - Deleting - Unhealthy type: string readOnly: true x-ms-enum: name: CustomDomainStatus modelAsString: true validationToken: description: The TXT record validation token type: string readOnly: true errorMessage: type: string readOnly: true x-ms-client-flatten: true StaticSiteCustomDomainOverviewCollection: description: Collection of static site custom domains. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteCustomDomainOverviewARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true StaticSiteCustomDomainRequestPropertiesARMResource: description: Static Site Custom Domain Request Properties ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: >- StaticSiteCustomDomainRequestPropertiesARMResource resource specific properties type: object properties: validationMethod: description: Validation method for adding a custom domain default: cname-delegation type: string x-ms-client-flatten: true StaticSiteDatabaseConnectionConfigurationFileOverview: description: A database connection configuration file type: object properties: fileName: description: The name of the configuration file. type: string readOnly: true contents: description: The Base64 encoding of the file contents. type: string readOnly: true type: description: The type of configuration file. type: string readOnly: true x-ms-client-flatten: true DatabaseConnection: description: Static Site Database Connection resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: DatabaseConnection resource specific properties type: object required: - resourceId - region properties: resourceId: description: The resource id of the database. type: string connectionIdentity: 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. type: string connectionString: description: The connection string to use to connect to the database. type: string x-ms-secret: true region: description: The region of the database resource. type: string configurationFiles: description: >- A list of configuration files associated with this database connection. type: array items: $ref: >- #/definitions/StaticSiteDatabaseConnectionConfigurationFileOverview x-ms-identifiers: - fileName readOnly: true x-ms-client-flatten: true DatabaseConnectionOverview: description: Static Site Database Connection overview. type: object properties: resourceId: description: The resource id of the database. type: string readOnly: true connectionIdentity: 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. type: string readOnly: true region: description: The region of the database resource. type: string readOnly: true configurationFiles: description: >- A list of configuration files associated with this database connection. type: array items: $ref: '#/definitions/StaticSiteDatabaseConnectionConfigurationFileOverview' x-ms-identifiers: - fileName readOnly: true name: description: If present, the name of this database connection resource. type: string readOnly: true x-ms-client-flatten: true DatabaseConnectionCollection: description: Collection of static site database connections. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/DatabaseConnection' nextLink: description: Link to next page of resources. type: string readOnly: true DatabaseConnectionPatchRequest: description: Static Site Database Connection Request Properties resource when patching type: object properties: properties: description: DatabaseConnectionPatchRequest resource specific properties type: object properties: resourceId: description: The resource id of the database. type: string connectionIdentity: 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. type: string connectionString: description: The connection string to use to connect to the database. type: string x-ms-secret: true region: description: The region of the database resource. type: string x-ms-client-flatten: true StaticSiteFunctionOverviewARMResource: description: Static Site Function Overview ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteFunctionOverviewARMResource resource specific properties type: object properties: functionName: description: The name for the function type: string readOnly: true triggerType: description: The trigger type of the function enum: - HttpTrigger - Unknown type: string readOnly: true x-ms-enum: name: TriggerTypes modelAsString: true x-ms-client-flatten: true StaticSiteFunctionOverviewCollection: description: Collection of static site functions. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteFunctionOverviewARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true StaticSitePatchResource: description: ARM resource for a static site when patching type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: $ref: '#/definitions/StaticSite' description: Core resource properties type: object x-ms-client-flatten: true StaticSiteResetPropertiesARMResource: description: Static Site Reset Properties ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteResetPropertiesARMResource resource specific properties type: object properties: repositoryToken: description: The token which proves admin privileges to the repository. type: string shouldUpdateRepository: description: >- Determines whether the repository should be updated with the new properties. type: boolean x-ms-client-flatten: true StaticSiteTemplateOptions: description: Template Options for the static site. type: object properties: templateRepositoryUrl: description: >- URL of the template repository. The newly generated repository will be based on this one. type: string owner: description: Owner of the newly generated repository. type: string repositoryName: description: Name of the newly generated repository. type: string description: description: Description of the newly generated repository. type: string isPrivate: description: >- Whether or not the newly generated repository is a private repository. Defaults to false (i.e. public). type: boolean StaticSiteUserARMResource: description: Static Site User ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteUserARMResource resource specific properties type: object properties: provider: description: The identity provider for the static site user. type: string readOnly: true userId: description: The user id for the static site user. type: string readOnly: true displayName: description: The display name for the static site user. type: string readOnly: true roles: description: The roles for the static site user, in free-form string format type: string x-ms-client-flatten: true StaticSiteUserCollection: description: Collection of static site custom users. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteUserARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true StaticSiteUserInvitationRequestResource: description: Static sites user roles invitation resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteUserInvitationRequestResource resource specific properties type: object properties: domain: description: The domain name for the static site custom domain. type: string provider: description: The identity provider for the static site user. type: string userDetails: description: The user id for the static site user. type: string roles: description: The roles for the static site user, in free-form string format type: string numHoursToExpiration: format: int32 description: The number of hours the sas token stays valid type: integer x-ms-client-flatten: true StaticSiteUserInvitationResponseResource: description: Static sites user roles invitation link resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteUserInvitationResponseResource resource specific properties type: object properties: expiresOn: format: date-time description: The expiration time of the invitation type: string readOnly: true invitationUrl: description: The url for the invitation link type: string readOnly: true x-ms-client-flatten: true StaticSiteUserProvidedFunctionApp: description: A static site user provided function. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteUserProvidedFunctionApp resource specific properties type: object properties: functionAppResourceId: description: >- The resource id of the function app registered with the static site type: string functionAppRegion: description: The region of the function app registered with the static site type: string createdOn: format: date-time description: >- The date and time on which the function app was registered with the static site. type: string readOnly: true x-ms-client-flatten: true StaticSiteUserProvidedFunctionAppARMResource: description: Static Site User Provided Function App ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: >- StaticSiteUserProvidedFunctionAppARMResource resource specific properties type: object properties: functionAppResourceId: description: >- The resource id of the function app registered with the static site type: string functionAppRegion: description: The region of the function app registered with the static site type: string createdOn: format: date-time description: >- The date and time on which the function app was registered with the static site. type: string readOnly: true x-ms-client-flatten: true StaticSiteUserProvidedFunctionAppsCollection: description: Collection of static site user provided function apps. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteUserProvidedFunctionAppARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true StaticSiteZipDeployment: description: A static site zip deployment. type: object properties: appZipUrl: description: URL for the zipped app content type: string apiZipUrl: description: URL for the zipped api content type: string deploymentTitle: description: A title to label the deployment type: string provider: description: The provider submitting this deployment type: string functionLanguage: description: The language of the api content, if it exists type: string StaticSiteZipDeploymentARMResource: description: Static site zip deployment ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: $ref: '#/definitions/StaticSiteZipDeployment' description: Core resource properties type: object x-ms-client-flatten: true StaticSitesWorkflowPreview: description: Preview for the Static Site Workflow to be generated type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSitesWorkflowPreview resource specific properties type: object properties: path: description: The path for the workflow file to be generated type: string readOnly: true contents: description: The contents for the workflow file to be generated type: string readOnly: true x-ms-client-flatten: true StaticSitesWorkflowPreviewRequest: description: Request entity for previewing the Static Site workflow type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSitesWorkflowPreviewRequest resource specific properties type: object properties: repositoryUrl: description: URL for the repository of the static site. type: string branch: description: The target branch in the repository. type: string buildProperties: $ref: '#/definitions/StaticSiteBuildProperties' description: Build properties to configure on the repository. x-ms-client-flatten: true StringList: description: String list resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: List of string resources. type: array items: type: string StaticSiteLinkedBackendARMResource: description: Static Site Linked Backend ARM resource. type: object allOf: - $ref: ./CommonDefinitions.json#/definitions/ProxyOnlyResource properties: properties: description: StaticSiteLinkedBackendARMResource resource specific properties type: object properties: backendResourceId: description: The resource id of the backend linked to the static site type: string region: description: The region of the backend linked to the static site type: string createdOn: format: date-time description: >- The date and time on which the backend was linked to the static site. type: string readOnly: true provisioningState: description: The provisioning state of the linking process. type: string readOnly: true x-ms-client-flatten: true StaticSiteLinkedBackend: description: Static Site Linked Backend ARM resource. type: object properties: backendResourceId: description: The resource id of the backend linked to the static site type: string region: description: The region of the backend linked to the static site type: string createdOn: format: date-time description: The date and time on which the backend was linked to the static site. type: string readOnly: true provisioningState: description: The provisioning state of the linking process. type: string readOnly: true StaticSiteLinkedBackendsCollection: description: Collection of static site linked backends. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: '#/definitions/StaticSiteLinkedBackendARMResource' nextLink: description: Link to next page of resources. type: string readOnly: true parameters: subscriptionIdParameter: name: subscriptionId in: path description: >- Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). required: true type: string x-ms-parameter-location: client resourceGroupNameParameter: name: resourceGroupName in: path description: Name of the resource group to which the resource belongs. required: true type: string maxLength: 90 minLength: 1 pattern: ^[-\w\._\(\)]+[^\.]$ x-ms-parameter-location: method apiVersionParameter: name: api-version in: query description: API Version required: true type: string x-ms-parameter-location: client environmentNameParameter: name: environmentName in: path description: The stage site identifier. required: true pattern: ^[a-zA-Z0-9]+$ type: string x-ms-parameter-location: method databaseConnectionNameParameter: name: databaseConnectionName in: path description: Name of the database connection. required: true pattern: ^[a-zA-Z0-9]+$ type: string x-ms-parameter-location: method 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 security: - azure_auth: - user_impersonation tags: - name: StaticSites