resource_health_metadata
Creates, updates, deletes, gets or lists a resource_health_metadata
resource.
Overview
Name | resource_health_metadata |
Type | Resource |
Id | azure.app_service.resource_health_metadata |
Fields
The following fields are returned by SELECT
queries:
- list_by_site_slot
- get_by_site_slot
- list_by_site
- get_by_site
- list_by_resource_group
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | ResourceHealthMetadata resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | ResourceHealthMetadata resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | ResourceHealthMetadata resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | ResourceHealthMetadata resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | ResourceHealthMetadata resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | ResourceHealthMetadata resource specific properties |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_site_slot | select | resourceGroupName , name , slot , subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection | |
get_by_site_slot | select | resourceGroupName , name , slot , subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site | |
list_by_site | select | resourceGroupName , name , subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection | |
get_by_site | select | resourceGroupName , name , subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site | |
list_by_resource_group | select | resourceGroupName , subscriptionId | Description for List all ResourceHealthMetadata for all sites in the resource group in the subscription. | |
list | select | subscriptionId | Description for List all ResourceHealthMetadata for all sites in the subscription. |
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 |
---|---|---|
name | string | Name of web app |
resourceGroupName | string | Name of the resource group to which the resource belongs. |
slot | string | Name of web app slot. If not specified then will default to production slot. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- list_by_site_slot
- get_by_site_slot
- list_by_site
- get_by_site
- list_by_resource_group
- list
Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.resource_health_metadata
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND slot = '{{ slot }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Description for Gets the category of ResourceHealthMetadata to use for the given site
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.resource_health_metadata
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND slot = '{{ slot }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.resource_health_metadata
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Description for Gets the category of ResourceHealthMetadata to use for the given site
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.resource_health_metadata
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Description for List all ResourceHealthMetadata for all sites in the resource group in the subscription.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.resource_health_metadata
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Description for List all ResourceHealthMetadata for all sites in the subscription.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.resource_health_metadata
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;