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
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_site | SELECT | name, resourceGroupName, subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site |
get_by_site_slot | SELECT | name, resourceGroupName, slot, subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site |
list | SELECT | subscriptionId | Description for List all ResourceHealthMetadata for all sites in the subscription. |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | Description for List all ResourceHealthMetadata for all sites in the resource group in the subscription. |
list_by_site | SELECT | name, resourceGroupName, subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection |
list_by_site_slot | SELECT | name, resourceGroupName, slot, subscriptionId | Description for Gets the category of ResourceHealthMetadata to use for the given site as a collection |
SELECT
examples
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 }}';