Backup Vaults - Create Or Update
Creates or updates a BackupVault resource belonging to a resource group.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataProtection/backupVaults/{vaultName}?api-version=2025-09-01
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
|
resource
|
path | True |
string minLength: 1maxLength: 90 |
The name of the resource group. The name is case insensitive. |
|
subscription
|
path | True |
string (uuid) |
The ID of the target subscription. The value must be an UUID. |
|
vault
|
path | True |
string |
The name of the BackupVaultResource |
|
api-version
|
query | True |
string minLength: 1 |
The API version to use for this operation. |
Request Header
| Name | Required | Type | Description |
|---|---|---|---|
| x-ms-authorization-auxiliary |
string |
||
| x-ms-deleted-vault-id |
string |
The ID of the deleted backup vault to restore from during undelete flow. |
Request Body
| Name | Required | Type | Description |
|---|---|---|---|
| location | True |
string |
The geo-location where the resource lives |
| properties | True |
BackupVaultResource properties |
|
| eTag |
string |
Optional ETag. |
|
| identity |
Input Managed Identity Details |
||
| tags |
object |
Resource tags. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
Resource 'BackupVaultResource' update operation succeeded |
|
| 201 Created |
Resource 'BackupVaultResource' create operation succeeded Headers
|
|
| Other Status Codes |
An unexpected error response. |
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
| Name | Description |
|---|---|
| user_impersonation | impersonate your user account |
Examples
|
Create Backup |
|
Create Backup |
|
Create Backup |
| Restore a soft-deleted backup vault |
Create BackupVault
Sample request
PUT https://management.azure.com/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/backupVaults/swaggerExample?api-version=2025-09-01
{
"location": "WestUS",
"properties": {
"featureSettings": {
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Sample response
{
"name": "swaggerExample",
"type": "Microsoft.DataProtection/Backupvaults",
"id": "/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample",
"location": "WestUS",
"properties": {
"featureSettings": {
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"provisioningState": "Succeeded",
"secureScore": "Adequate",
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Azure-AsyncOperation: https://management.windowsazure.com/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample/operationStatus/YWUzNDFkMzQtZmM5OS00MmUyLWEzNDMtZGJkMDIxZjlmZjgzOzdmYzBiMzhmLTc2NmItNDM5NS05OWQ1LTVmOGEzNzg4MWQzNA==?api-version=2025-09-01
Retry-After: 10
{
"name": "swaggerExample",
"type": "Microsoft.DataProtection/Backupvaults",
"id": "/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample",
"location": "WestUS",
"properties": {
"featureSettings": {
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"provisioningState": "Provisioning",
"secureScore": "Adequate",
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Create BackupVault With CMK
Sample request
PUT https://management.azure.com/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/backupVaults/swaggerExample?api-version=2025-09-01
{
"location": "WestUS",
"properties": {
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"securitySettings": {
"encryptionSettings": {
"infrastructureEncryption": "Enabled",
"kekIdentity": {
"identityId": "/subscriptions/85bf5e8c-3084-4f42-add2-746ebb7e97b2/resourcegroups/defaultrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplemsi",
"identityType": "UserAssigned"
},
"keyVaultProperties": {
"keyUri": "https://cmk2xkv.vault.azure.net/keys/Key1/0767b348bb1a4c07baa6c4ec0055d2b3"
},
"state": "Enabled"
},
"immutabilitySettings": {
"state": "Disabled"
},
"softDeleteSettings": {
"retentionDurationInDays": 0,
"state": "Off"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Sample response
{
"name": "swaggerExample",
"type": "Microsoft.DataProtection/Backupvaults",
"id": "/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample",
"location": "WestUS",
"properties": {
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"provisioningState": "Succeeded",
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Azure-AsyncOperation: https://management.windowsazure.com/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample/operationStatus/YWUzNDFkMzQtZmM5OS00MmUyLWEzNDMtZGJkMDIxZjlmZjgzOzdmYzBiMzhmLTc2NmItNDM5NS05OWQ1LTVmOGEzNzg4MWQzNA==?api-version=2023-04-01-privatepreview
Retry-After: 10
{
"name": "swaggerExample",
"type": "Microsoft.DataProtection/Backupvaults",
"id": "/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample",
"location": "WestUS",
"properties": {
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"provisioningState": "Provisioning",
"securitySettings": {
"encryptionSettings": {
"infrastructureEncryption": "Enabled",
"kekIdentity": {
"identityId": "/subscriptions/85bf5e8c-3084-4f42-add2-746ebb7e97b2/resourcegroups/defaultrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplemsi",
"identityType": "UserAssigned"
},
"keyVaultProperties": {
"keyUri": "https://cmk2xkv.vault.azure.net/keys/Key1/0767b348bb1a4c07baa6c4ec0055d2b3"
},
"state": "Enabled"
},
"immutabilitySettings": {
"state": "Disabled"
},
"softDeleteSettings": {
"retentionDurationInDays": 0,
"state": "Off"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Create BackupVault With MSI
Sample request
PUT https://management.azure.com/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/backupVaults/swaggerExample?api-version=2025-09-01
{
"location": "WestUS",
"properties": {
"featureSettings": {
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Sample response
{
"name": "swaggerExample",
"type": "Microsoft.DataProtection/Backupvaults",
"id": "/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample",
"location": "WestUS",
"properties": {
"featureSettings": {
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"provisioningState": "Succeeded",
"secureScore": "Adequate",
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Azure-AsyncOperation: https://management.windowsazure.com/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample/operationStatus/YWUzNDFkMzQtZmM5OS00MmUyLWEzNDMtZGJkMDIxZjlmZjgzOzdmYzBiMzhmLTc2NmItNDM5NS05OWQ1LTVmOGEzNzg4MWQzNA==?api-version=2025-09-01
Retry-After: 10
{
"name": "swaggerExample",
"type": "Microsoft.DataProtection/Backupvaults",
"id": "/subscriptions/0b352192-dcac-4cc7-992e-a96190ccc68c/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/Backupvaults/swaggerExample",
"location": "WestUS",
"properties": {
"featureSettings": {
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"provisioningState": "Provisioning",
"secureScore": "Adequate",
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
}
},
"storageSettings": [
{
"type": "LocallyRedundant",
"datastoreType": "VaultStore"
}
]
},
"tags": {
"key1": "val1"
}
}
Restore a soft-deleted backup vault
Sample request
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/backupVaults/swaggerExample?api-version=2025-09-01
{
"location": "WestUS",
"properties": {
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
},
"immutabilitySettings": {
"state": "Disabled"
}
},
"storageSettings": [
{
"datastoreType": "VaultStore",
"type": "LocallyRedundant"
}
],
"featureSettings": {
"crossSubscriptionRestoreSettings": {
"state": "Disabled"
},
"crossRegionRestoreSettings": {
"state": "Enabled"
}
}
},
"tags": {
"key1": "val1"
}
}
Sample response
{
"location": "WestUS",
"tags": {
"key1": "val1"
},
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/BackupVaults/swaggerExample",
"name": "swaggerExample",
"type": "Microsoft.DataProtection/BackupVaults",
"properties": {
"provisioningState": "Succeeded",
"resourceMoveState": "Unknown",
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
},
"immutabilitySettings": {
"state": "Disabled"
}
},
"storageSettings": [
{
"datastoreType": "VaultStore",
"type": "LocallyRedundant"
}
],
"featureSettings": {
"crossSubscriptionRestoreSettings": {
"state": "Disabled"
},
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"secureScore": "Maximum",
"isVaultProtectedByResourceGuard": false,
"resourceGuardOperationRequests": [],
"replicatedRegions": []
}
}
{
"location": "WestUS",
"tags": {
"key1": "val1"
},
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SampleResourceGroup/providers/Microsoft.DataProtection/BackupVaults/swaggerExample",
"name": "swaggerExample",
"type": "Microsoft.DataProtection/BackupVaults",
"properties": {
"provisioningState": "Succeeded",
"resourceMoveState": "Unknown",
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "Enabled"
}
},
"securitySettings": {
"softDeleteSettings": {
"retentionDurationInDays": 14,
"state": "Enabled"
},
"immutabilitySettings": {
"state": "Disabled"
}
},
"storageSettings": [
{
"datastoreType": "VaultStore",
"type": "LocallyRedundant"
}
],
"featureSettings": {
"crossSubscriptionRestoreSettings": {
"state": "Disabled"
},
"crossRegionRestoreSettings": {
"state": "Enabled"
}
},
"secureScore": "Maximum",
"isVaultProtectedByResourceGuard": false,
"resourceGuardOperationRequests": [],
"replicatedRegions": []
}
}
Definitions
| Name | Description |
|---|---|
|
Alerts |
|
|
Azure |
Settings for Azure Monitor based alerts |
|
Backup |
Backup Vault |
|
Backup |
Backup Vault Resource |
|
BCDRSecurity |
Security Level of Backup Vault |
|
Cloud |
An error response from Azure Backup. |
|
Cmk |
The details of the managed identity used for CMK |
|
Cmk |
The properties of the Key Vault which hosts CMK |
|
created |
The type of identity that created the resource. |
|
Cross |
|
|
Cross |
CrossRegionRestore state |
|
Cross |
CrossSubscriptionRestore Settings |
|
Cross |
CrossSubscriptionRestore state |
|
Dpp |
Identity details |
|
encryption |
Customer Managed Key details of the resource. |
|
Encryption |
Encryption state of the Backup Vault. |
| Error |
The resource management error response. |
|
Error |
The resource management error additional info. |
|
Feature |
Class containing feature settings of vault |
|
Identity |
The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity. |
|
Immutability |
Immutability Settings at vault level |
|
Immutability |
Immutability state |
|
Infrastructure |
Enabling/Disabling the Double Encryption state |
|
Monitoring |
Monitoring Settings |
|
Provisioning |
Provisioning state of the BackupVault resource |
|
Resource |
ResourceMoveDetails will be returned in response to GetResource call from ARM |
|
Resource |
Resource move state for backup vault |
|
Secure |
Secure Score of Backup Vault |
|
Security |
Class containing security settings of vault |
|
Soft |
Soft delete related settings |
|
Soft |
State of soft delete |
|
Storage |
Storage setting |
|
Storage |
Gets or sets the type of the datastore. |
|
Storage |
Gets or sets the type. |
|
system |
Metadata pertaining to creation and last modification of the resource. |
|
User |
User assigned identity properties |
AlertsState
| Value | Description |
|---|---|
| Enabled | |
| Disabled |
AzureMonitorAlertSettings
Settings for Azure Monitor based alerts
| Name | Type | Description |
|---|---|---|
| alertsForAllJobFailures |
BackupVault
Backup Vault
| Name | Type | Description |
|---|---|---|
| bcdrSecurityLevel |
Security Level of Backup Vault |
|
| featureSettings |
Feature Settings |
|
| isVaultProtectedByResourceGuard |
boolean |
Is vault protected by resource guard |
| monitoringSettings |
Monitoring Settings |
|
| provisioningState |
Provisioning state of the BackupVault resource |
|
| replicatedRegions |
string[] |
List of replicated regions for Backup Vault |
| resourceGuardOperationRequests |
string[] |
ResourceGuardOperationRequests on which LAC check will be performed |
| resourceMoveDetails |
Resource move details for backup vault |
|
| resourceMoveState |
Resource move state for backup vault |
|
| secureScore |
Secure Score of Backup Vault |
|
| securitySettings |
Security Settings |
|
| storageSettings |
Storage Settings |
BackupVaultResource
Backup Vault Resource
| Name | Type | Description |
|---|---|---|
| eTag |
string |
Optional ETag. |
| id |
string (arm-id) |
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
| identity |
Input Managed Identity Details |
|
| location |
string |
The geo-location where the resource lives |
| name |
string |
The name of the resource |
| properties |
BackupVaultResource properties |
|
| systemData |
Azure Resource Manager metadata containing createdBy and modifiedBy information. |
|
| tags |
object |
Resource tags. |
| type |
string |
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
BCDRSecurityLevel
Security Level of Backup Vault
| Value | Description |
|---|---|
| Poor | |
| Fair | |
| Good | |
| Excellent | |
| NotSupported |
CloudError
An error response from Azure Backup.
| Name | Type | Description |
|---|---|---|
| error |
The resource management error response. |
CmkKekIdentity
The details of the managed identity used for CMK
| Name | Type | Description |
|---|---|---|
| identityId |
string |
The managed identity to be used which has access permissions to the Key Vault. Provide a value here in case identity types: 'UserAssigned' only. |
| identityType |
The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity. |
CmkKeyVaultProperties
The properties of the Key Vault which hosts CMK
| Name | Type | Description |
|---|---|---|
| keyUri |
string |
The key uri of the Customer Managed Key |
createdByType
The type of identity that created the resource.
| Value | Description |
|---|---|
| User | |
| Application | |
| ManagedIdentity | |
| Key |
CrossRegionRestoreSettings
| Name | Type | Description |
|---|---|---|
| state |
CrossRegionRestore state |
CrossRegionRestoreState
CrossRegionRestore state
| Value | Description |
|---|---|
| Disabled | |
| Enabled |
CrossSubscriptionRestoreSettings
CrossSubscriptionRestore Settings
| Name | Type | Description |
|---|---|---|
| state |
CrossSubscriptionRestore state |
CrossSubscriptionRestoreState
CrossSubscriptionRestore state
| Value | Description |
|---|---|
| Disabled | |
| PermanentlyDisabled | |
| Enabled |
DppIdentityDetails
Identity details
| Name | Type | Description |
|---|---|---|
| principalId |
string |
The object ID of the service principal object for the managed identity that is used to grant role-based access to an Azure resource. |
| tenantId |
string |
A Globally Unique Identifier (GUID) that represents the Azure AD tenant where the resource is now a member. |
| type |
string |
The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None |
| userAssignedIdentities |
<string,
User |
Gets or sets the user assigned identities. |
encryptionSettings
Customer Managed Key details of the resource.
| Name | Type | Description |
|---|---|---|
| infrastructureEncryption |
Enabling/Disabling the Double Encryption state |
|
| kekIdentity |
The details of the managed identity used for CMK |
|
| keyVaultProperties |
The properties of the Key Vault which hosts CMK |
|
| state |
Encryption state of the Backup Vault. |
EncryptionState
Encryption state of the Backup Vault.
| Value | Description |
|---|---|
| Enabled |
CMK encryption is enabled on the Backup Vault |
| Disabled |
CMK encryption is disabled on the Backup Vault. User can not set this state once Encryption State is 'Enabled'. |
| Inconsistent |
CMK encryption is in inconsistent state on the Backup Vault. This state indicates that user needs to retry the encryption settings operation immediately to correct the state. |
Error
The resource management error response.
| Name | Type | Description |
|---|---|---|
| additionalInfo |
The error additional info. |
|
| code |
string |
The error code. |
| details |
Error[] |
The error details. |
| message |
string |
The error message. |
| target |
string |
The error target. |
ErrorAdditionalInfo
The resource management error additional info.
| Name | Type | Description |
|---|---|---|
| info |
object |
The additional info. |
| type |
string |
The additional info type. |
FeatureSettings
Class containing feature settings of vault
| Name | Type | Description |
|---|---|---|
| crossRegionRestoreSettings | ||
| crossSubscriptionRestoreSettings |
CrossSubscriptionRestore Settings |
IdentityType
The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
| Value | Description |
|---|---|
| SystemAssigned | |
| UserAssigned |
ImmutabilitySettings
Immutability Settings at vault level
| Name | Type | Description |
|---|---|---|
| state |
Immutability state |
ImmutabilityState
Immutability state
| Value | Description |
|---|---|
| Disabled | |
| Unlocked | |
| Locked |
InfrastructureEncryptionState
Enabling/Disabling the Double Encryption state
| Value | Description |
|---|---|
| Enabled | |
| Disabled |
MonitoringSettings
Monitoring Settings
| Name | Type | Description |
|---|---|---|
| azureMonitorAlertSettings |
Settings for Azure Monitor based alerts |
ProvisioningState
Provisioning state of the BackupVault resource
| Value | Description |
|---|---|
| Failed | |
| Provisioning | |
| Succeeded | |
| Unknown | |
| Updating |
ResourceMoveDetails
ResourceMoveDetails will be returned in response to GetResource call from ARM
| Name | Type | Description |
|---|---|---|
| completionTimeUtc |
string |
Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format. |
| operationId |
string |
CorrelationId of latest ResourceMove operation attempted |
| sourceResourcePath |
string |
ARM resource path of source resource |
| startTimeUtc |
string |
Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format. |
| targetResourcePath |
string |
ARM resource path of target resource used in latest ResourceMove operation |
ResourceMoveState
Resource move state for backup vault
| Value | Description |
|---|---|
| Unknown | |
| InProgress | |
| PrepareFailed | |
| CommitFailed | |
| Failed | |
| PrepareTimedout | |
| CommitTimedout | |
| CriticalFailure | |
| PartialSuccess | |
| MoveSucceeded |
SecureScoreLevel
Secure Score of Backup Vault
| Value | Description |
|---|---|
| None | |
| Minimum | |
| Adequate | |
| Maximum | |
| NotSupported |
SecuritySettings
Class containing security settings of vault
| Name | Type | Description |
|---|---|---|
| encryptionSettings |
Customer Managed Key details of the resource. |
|
| immutabilitySettings |
Immutability Settings at vault level |
|
| softDeleteSettings |
Soft delete related settings |
SoftDeleteSettings
Soft delete related settings
| Name | Type | Description |
|---|---|---|
| retentionDurationInDays |
number (double) |
Soft delete retention duration |
| state |
State of soft delete |
SoftDeleteState
State of soft delete
| Value | Description |
|---|---|
| Off |
Soft Delete is turned off for the BackupVault |
| On |
Soft Delete is enabled for the BackupVault but can be turned off |
| AlwaysOn |
Soft Delete is permanently enabled for the BackupVault and the setting cannot be changed |
StorageSetting
Storage setting
| Name | Type | Description |
|---|---|---|
| datastoreType |
Gets or sets the type of the datastore. |
|
| type |
Gets or sets the type. |
StorageSettingStoreTypes
Gets or sets the type of the datastore.
| Value | Description |
|---|---|
| ArchiveStore | |
| OperationalStore | |
| VaultStore |
StorageSettingTypes
Gets or sets the type.
| Value | Description |
|---|---|
| GeoRedundant | |
| LocallyRedundant | |
| ZoneRedundant |
systemData
Metadata pertaining to creation and last modification of the resource.
| Name | Type | Description |
|---|---|---|
| createdAt |
string (date-time) |
The timestamp of resource creation (UTC). |
| createdBy |
string |
The identity that created the resource. |
| createdByType |
The type of identity that created the resource. |
|
| lastModifiedAt |
string (date-time) |
The timestamp of resource last modification (UTC) |
| lastModifiedBy |
string |
The identity that last modified the resource. |
| lastModifiedByType |
The type of identity that last modified the resource. |
UserAssignedIdentity
User assigned identity properties
| Name | Type | Description |
|---|---|---|
| clientId |
string (uuid) |
The client ID of the assigned identity. |
| principalId |
string (uuid) |
The principal ID of the assigned identity. |