plans_web_apps
Creates, updates, deletes, gets or lists a plans_web_apps
resource.
Overview
Name | plans_web_apps |
Type | Resource |
Id | azure.app_service.plans_web_apps |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
extendedLocation | object | Extended Location. |
identity | object | Managed service identity. |
properties | object | Site resource specific properties |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , name , subscriptionId | $skipToken , $filter , $top | Description 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.
Name | Datatype | Description |
---|---|---|
name | string | Name of the App Service plan. |
resourceGroupName | string | Name of the resource group to which the resource belongs. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
$filter | string | Supported filter: $filter=state eq running. Returns only web apps that are currently running |
$skipToken | string | Skip 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 |
$top | string | List page size. If specified, results are paged. |
SELECT
examples
- list
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 }}'
;