swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector DeletedWebApps API schemes: - https tags: - name: DeletedWebApps paths: /subscriptions/{subscriptionId}/providers/Microsoft.Web/deletedSites: get: tags: - DeletedWebApps summary: Microsoft Azure Get All Deleted Apps For A Subscription description: Description for Get all deleted apps for a subscription. operationId: microsoftAzureDeletedwebappsList parameters: - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DeletedWebAppCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-pageable: nextLinkName: nextLink /subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites: get: tags: - DeletedWebApps summary: Microsoft Azure Get All Deleted Apps For A Subscription At Location description: Description for Get all deleted apps for a subscription at location operationId: microsoftAzureDeletedwebappsListbylocation parameters: - name: location in: path required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/DeletedWebAppCollection' default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: List Deleted Web App by Location: $ref: ./examples/ListDeletedWebAppsByLocation.json x-ms-pageable: nextLinkName: nextLink /subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites/{deletedSiteId}: get: tags: - DeletedWebApps summary: Microsoft Azure Get Deleted App For A Subscription At Location description: Description for Get deleted app for a subscription at location. operationId: microsoftAzureDeletedwebappsGetdeletedwebappbylocation parameters: - name: location in: path required: true type: string - name: deletedSiteId in: path description: The numeric ID of the deleted app, e.g. 12345 required: true type: string - $ref: '#/parameters/subscriptionIdParameter' - $ref: '#/parameters/apiVersionParameter' responses: '200': description: OK schema: $ref: ./CommonDefinitions.json#/definitions/DeletedSite default: description: App Service error response. schema: $ref: ./CommonDefinitions.json#/definitions/DefaultErrorResponse x-ms-examples: Get Deleted Web App by Location: $ref: ./examples/GetDeletedWebAppByLocation.json definitions: DeletedWebAppCollection: description: Collection of deleted apps. required: - value type: object properties: value: description: Collection of resources. type: array items: $ref: ./CommonDefinitions.json#/definitions/DeletedSite 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 apiVersionParameter: name: api-version in: query description: API Version required: true type: string x-ms-parameter-location: client x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'