Skip to main content

site_identifiers_assigned_to_host_names

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

Overview

Namesite_identifiers_assigned_to_host_names
TypeResource
Idazure.web.site_identifiers_assigned_to_host_names

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
kindstringKind of 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
list_site_identifiers_assigned_to_host_nameselectsubscription_idList 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.

NameDatatypeDescription
subscription_idstring

SELECT examples

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
;