deleted_web_apps
Creates, updates, deletes, gets or lists a deleted_web_apps
resource.
Overview
Name | deleted_web_apps |
Type | Resource |
Id | azure.app_service.deleted_web_apps |
Fields
The following fields are returned by SELECT
queries:
- get_by_location
- list_by_location
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | DeletedSite resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | DeletedSite resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | DeletedSite resource specific properties |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_by_location | select | location , deletedSiteId , subscriptionId | Description for Get deleted app for a subscription at location. | |
list_by_location | select | location , subscriptionId | Description for Get all deleted apps for a subscription at location | |
list | select | subscriptionId | Description for Get all deleted apps for a subscription. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
deletedSiteId | string | The numeric ID of the deleted app, e.g. 12345 |
location | string | |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- get_by_location
- list_by_location
- list
Description for Get deleted app for a subscription at location.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.deleted_web_apps
WHERE location = '{{ location }}' -- required
AND deletedSiteId = '{{ deletedSiteId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Description for Get all deleted apps for a subscription at location
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.deleted_web_apps
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Description for Get all deleted apps for a subscription.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.deleted_web_apps
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;