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

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
identityobjectManaged service identity.
kindstringKind of resource.
locationstringResource Location.
propertiesobjectA static site.
skuobjectDescription of a SKU for a scalable resource.
tagsobjectResource tags.
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, subscriptionIdDescription for Gets all static sites in the specified resource group.

SELECT examples

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

SELECT
id,
name,
identity,
kind,
location,
properties,
sku,
tags,
type
FROM azure.app_service.static_sites_by_resource_groups
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';