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
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_location | SELECT | deletedSiteId, location, subscriptionId | Description for Get deleted app for a subscription at location. |
list | SELECT | subscriptionId | Description for Get all deleted apps for a subscription. |
list_by_location | SELECT | location, subscriptionId | Description for Get all deleted apps for a subscription at location |
SELECT
examples
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 }}';