static_sites_by_resource_groups
Creates, updates, deletes, gets or lists a static_sites_by_resource_groups
resource.
Overview
Name | static_sites_by_resource_groups |
Type | Resource |
Id | azure.app_service.static_sites_by_resource_groups |
Fields
The following fields are returned by SELECT
queries:
- get
OK.
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 |
identity | object | Managed service identity. |
properties | object | Core resource properties |
sku | object | Description of a SKU for a scalable resource. |
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 |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId | Description 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.
Name | Datatype | Description |
---|---|---|
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). |
SELECT
examples
- get
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
;