Skip to main content

replication_usages

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

Overview

Namereplication_usages
TypeResource
Idazure.recovery_services.replication_usages

Fields

NameDatatypeDescription
jobsSummaryobjectSummary of the replication job data for this vault.
monitoringSummaryobjectSummary of the replication monitoring data for this vault.
protectedItemCountintegerNumber of replication protected items for this vault.
recoveryPlanCountintegerNumber of replication recovery plans for this vault.
recoveryServicesProviderAuthTypeintegerThe authentication type of recovery service providers in the vault.
registeredServersCountintegerNumber of servers registered to this vault.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionId, vaultNameFetches the replication usages of the vault.

SELECT examples

Fetches the replication usages of the vault.

SELECT
jobsSummary,
monitoringSummary,
protectedItemCount,
recoveryPlanCount,
recoveryServicesProviderAuthType,
registeredServersCount
FROM azure.recovery_services.replication_usages
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';