Skip to main content

plans_web_apps

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

Overview

Nameplans_web_apps
TypeResource
Idazure.app_service.plans_web_apps

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
extendedLocationobjectExtended Location.
identityobjectManaged service identity.
propertiesobjectSite resource specific properties
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, name, subscriptionId$skipToken, $filter, $topDescription for Get all apps associated with an App Service plan.

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
namestringName of the App Service plan.
resourceGroupNamestringName of the resource group to which the resource belongs.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).
$filterstringSupported filter: $filter=state eq running. Returns only web apps that are currently running
$skipTokenstringSkip to a web app in the list of webapps associated with app service plan. If specified, the resulting list will contain web apps starting from (including) the skipToken. Otherwise, the resulting list contains web apps from the start of the list
$topstringList page size. If specified, results are paged.

SELECT examples

Description for Get all apps associated with an App Service plan.

SELECT
id,
name,
extendedLocation,
identity,
properties,
systemData,
type
FROM azure.app_service.plans_web_apps
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND $skipToken = '{{ $skipToken }}'
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
;