Skip to main content

static_sites_by_resource_groups

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

Overview

Namestatic_sites_by_resource_groups
TypeResource
Idazure.app_service.static_sites_by_resource_groups

Fields

The following fields are returned by SELECT queries:

OK.

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
identityobjectManaged service identity.
propertiesobjectCore resource properties
skuobjectDescription of a SKU for a scalable resource.
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
getselectresourceGroupName, subscriptionIdDescription for Gets all static sites in the specified resource group.

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
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).

SELECT examples

Description for Gets all static sites in the specified resource group.

SELECT
id,
name,
identity,
properties,
sku,
systemData,
type
FROM azure.app_service.static_sites_by_resource_groups
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;