Skip to main content

deleted_web_apps

Creates, updates, deletes, gets or lists a deleted_web_apps resource.

Overview

Namedeleted_web_apps
TypeResource
Idazure.app_service.deleted_web_apps

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectDeletedSite resource specific properties
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_locationselectlocation, deletedSiteId, subscriptionIdDescription for Get deleted app for a subscription at location.
list_by_locationselectlocation, subscriptionIdDescription for Get all deleted apps for a subscription at location
listselectsubscriptionIdDescription 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.

NameDatatypeDescription
deletedSiteIdstringThe numeric ID of the deleted app, e.g. 12345
locationstring
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

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
;