environments_web_apps
Creates, updates, deletes, gets or lists an environments_web_apps
resource.
Overview
Name | environments_web_apps |
Type | Resource |
Id | azure.app_service.environments_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 | propertiesToInclude | Description for Get all apps in an App Service Environment. |
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 Environment. |
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). |
propertiesToInclude | string | Comma separated list of app properties to include. |
SELECT
examples
- list
Description for Get all apps in an App Service Environment.
SELECT
id,
name,
extendedLocation,
identity,
properties,
systemData,
type
FROM azure.app_service.environments_web_apps
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND propertiesToInclude = '{{ propertiesToInclude }}'
;