site_identifiers_assigned_to_host_names
Creates, updates, deletes, gets or lists a site_identifiers_assigned_to_host_names resource.
Overview
| Name | site_identifiers_assigned_to_host_names |
| Type | Resource |
| Id | azure.web.site_identifiers_assigned_to_host_names |
Fields
The following fields are returned by SELECT queries:
- list_site_identifiers_assigned_to_host_name
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
kind | string | Kind of 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 |
|---|---|---|---|---|
list_site_identifiers_assigned_to_host_name | select | subscription_id | List all apps that are assigned to a hostname. Description for List all apps that are assigned to a hostname. |
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 |
|---|---|---|
subscription_id | string |
SELECT examples
- list_site_identifiers_assigned_to_host_name
List all apps that are assigned to a hostname. Description for List all apps that are assigned to a hostname.
SELECT
id,
name,
kind,
systemData,
type
FROM azure.web.site_identifiers_assigned_to_host_names
WHERE subscription_id = '{{ subscription_id }}' -- required
;