Skip to main content

environments_web_apps

Creates, updates, deletes, gets or lists an environments_web_apps resource.

Overview

Nameenvironments_web_apps
TypeResource
Idazure.app_service.environments_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, subscriptionIdpropertiesToIncludeDescription 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.

NameDatatypeDescription
namestringName of the App Service Environment.
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).
propertiesToIncludestringComma separated list of app properties to include.

SELECT examples

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 }}'
;