replication_vault_health
Creates, updates, deletes, gets or lists a replication_vault_health
resource.
Overview
Name | replication_vault_health |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_vault_health |
Fields
- vw_replication_vault_health
- replication_vault_health
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
containers_health | text | field from the properties object |
fabrics_health | text | field from the properties object |
location | text | Resource Location |
protected_items_health | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource Type |
vault_errors | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | class to define the health summary of the Vault. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, subscriptionId | Gets the health details of the vault. |
refresh | EXEC | resourceGroupName, resourceName, subscriptionId |
SELECT
examples
Gets the health details of the vault.
- vw_replication_vault_health
- replication_vault_health
SELECT
id,
name,
containers_health,
fabrics_health,
location,
protected_items_health,
resourceGroupName,
resourceName,
subscriptionId,
type,
vault_errors
FROM azure.recovery_services_site_recovery.vw_replication_vault_health
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_vault_health
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';