azure-native.dataprotection.BackupVault
Explore with Pulumi AI
Backup Vault Resource
Uses Azure REST API version 2025-01-01. In version 2.x of the Azure Native provider, it used API version 2023-01-01.
Other available API versions: 2023-01-01, 2023-04-01-preview, 2023-05-01, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01, 2023-12-01, 2024-02-01-preview, 2024-03-01, 2024-04-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native dataprotection [ApiVersion]
. See the version guide for details.
Example Usage
Create BackupVault
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var backupVault = new AzureNative.DataProtection.BackupVault("backupVault", new()
{
Identity = new AzureNative.DataProtection.Inputs.DppIdentityDetailsArgs
{
Type = "None",
},
Location = "WestUS",
Properties = new AzureNative.DataProtection.Inputs.BackupVaultArgs
{
FeatureSettings = new AzureNative.DataProtection.Inputs.FeatureSettingsArgs
{
CrossRegionRestoreSettings = new AzureNative.DataProtection.Inputs.CrossRegionRestoreSettingsArgs
{
State = AzureNative.DataProtection.CrossRegionRestoreState.Enabled,
},
},
MonitoringSettings = new AzureNative.DataProtection.Inputs.MonitoringSettingsArgs
{
AzureMonitorAlertSettings = new AzureNative.DataProtection.Inputs.AzureMonitorAlertSettingsArgs
{
AlertsForAllJobFailures = AzureNative.DataProtection.AlertsState.Enabled,
},
},
SecuritySettings = new AzureNative.DataProtection.Inputs.SecuritySettingsArgs
{
SoftDeleteSettings = new AzureNative.DataProtection.Inputs.SoftDeleteSettingsArgs
{
RetentionDurationInDays = 14,
State = "Enabled",
},
},
StorageSettings = new[]
{
new AzureNative.DataProtection.Inputs.StorageSettingArgs
{
DatastoreType = AzureNative.DataProtection.StorageSettingStoreTypes.VaultStore,
Type = AzureNative.DataProtection.StorageSettingTypes.LocallyRedundant,
},
},
},
ResourceGroupName = "SampleResourceGroup",
Tags =
{
{ "key1", "val1" },
},
VaultName = "swaggerExample",
});
});
package main
import (
dataprotection "github.com/pulumi/pulumi-azure-native-sdk/dataprotection/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dataprotection.NewBackupVault(ctx, "backupVault", &dataprotection.BackupVaultArgs{
Identity: &dataprotection.DppIdentityDetailsArgs{
Type: pulumi.String("None"),
},
Location: pulumi.String("WestUS"),
Properties: &dataprotection.BackupVaultTypeArgs{
FeatureSettings: &dataprotection.FeatureSettingsArgs{
CrossRegionRestoreSettings: &dataprotection.CrossRegionRestoreSettingsArgs{
State: pulumi.String(dataprotection.CrossRegionRestoreStateEnabled),
},
},
MonitoringSettings: &dataprotection.MonitoringSettingsArgs{
AzureMonitorAlertSettings: &dataprotection.AzureMonitorAlertSettingsArgs{
AlertsForAllJobFailures: pulumi.String(dataprotection.AlertsStateEnabled),
},
},
SecuritySettings: &dataprotection.SecuritySettingsArgs{
SoftDeleteSettings: &dataprotection.SoftDeleteSettingsArgs{
RetentionDurationInDays: pulumi.Float64(14),
State: pulumi.String("Enabled"),
},
},
StorageSettings: dataprotection.StorageSettingArray{
&dataprotection.StorageSettingArgs{
DatastoreType: pulumi.String(dataprotection.StorageSettingStoreTypesVaultStore),
Type: pulumi.String(dataprotection.StorageSettingTypesLocallyRedundant),
},
},
},
ResourceGroupName: pulumi.String("SampleResourceGroup"),
Tags: pulumi.StringMap{
"key1": pulumi.String("val1"),
},
VaultName: pulumi.String("swaggerExample"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.dataprotection.BackupVault;
import com.pulumi.azurenative.dataprotection.inputs.DppIdentityDetailsArgs;
import com.pulumi.azurenative.dataprotection.inputs.FeatureSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.CrossRegionRestoreSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.MonitoringSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.AzureMonitorAlertSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.SecuritySettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.SoftDeleteSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var backupVault = new BackupVault("backupVault", BackupVaultArgs.builder()
.identity(DppIdentityDetailsArgs.builder()
.type("None")
.build())
.location("WestUS")
.properties(BackupVaultArgs.builder()
.featureSettings(FeatureSettingsArgs.builder()
.crossRegionRestoreSettings(CrossRegionRestoreSettingsArgs.builder()
.state("Enabled")
.build())
.build())
.monitoringSettings(MonitoringSettingsArgs.builder()
.azureMonitorAlertSettings(AzureMonitorAlertSettingsArgs.builder()
.alertsForAllJobFailures("Enabled")
.build())
.build())
.securitySettings(SecuritySettingsArgs.builder()
.softDeleteSettings(SoftDeleteSettingsArgs.builder()
.retentionDurationInDays(14.0)
.state("Enabled")
.build())
.build())
.storageSettings(StorageSettingArgs.builder()
.datastoreType("VaultStore")
.type("LocallyRedundant")
.build())
.build())
.resourceGroupName("SampleResourceGroup")
.tags(Map.of("key1", "val1"))
.vaultName("swaggerExample")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const backupVault = new azure_native.dataprotection.BackupVault("backupVault", {
identity: {
type: "None",
},
location: "WestUS",
properties: {
featureSettings: {
crossRegionRestoreSettings: {
state: azure_native.dataprotection.CrossRegionRestoreState.Enabled,
},
},
monitoringSettings: {
azureMonitorAlertSettings: {
alertsForAllJobFailures: azure_native.dataprotection.AlertsState.Enabled,
},
},
securitySettings: {
softDeleteSettings: {
retentionDurationInDays: 14,
state: "Enabled",
},
},
storageSettings: [{
datastoreType: azure_native.dataprotection.StorageSettingStoreTypes.VaultStore,
type: azure_native.dataprotection.StorageSettingTypes.LocallyRedundant,
}],
},
resourceGroupName: "SampleResourceGroup",
tags: {
key1: "val1",
},
vaultName: "swaggerExample",
});
import pulumi
import pulumi_azure_native as azure_native
backup_vault = azure_native.dataprotection.BackupVault("backupVault",
identity={
"type": "None",
},
location="WestUS",
properties={
"feature_settings": {
"cross_region_restore_settings": {
"state": azure_native.dataprotection.CrossRegionRestoreState.ENABLED,
},
},
"monitoring_settings": {
"azure_monitor_alert_settings": {
"alerts_for_all_job_failures": azure_native.dataprotection.AlertsState.ENABLED,
},
},
"security_settings": {
"soft_delete_settings": {
"retention_duration_in_days": 14,
"state": "Enabled",
},
},
"storage_settings": [{
"datastore_type": azure_native.dataprotection.StorageSettingStoreTypes.VAULT_STORE,
"type": azure_native.dataprotection.StorageSettingTypes.LOCALLY_REDUNDANT,
}],
},
resource_group_name="SampleResourceGroup",
tags={
"key1": "val1",
},
vault_name="swaggerExample")
resources:
backupVault:
type: azure-native:dataprotection:BackupVault
properties:
identity:
type: None
location: WestUS
properties:
featureSettings:
crossRegionRestoreSettings:
state: Enabled
monitoringSettings:
azureMonitorAlertSettings:
alertsForAllJobFailures: Enabled
securitySettings:
softDeleteSettings:
retentionDurationInDays: 14
state: Enabled
storageSettings:
- datastoreType: VaultStore
type: LocallyRedundant
resourceGroupName: SampleResourceGroup
tags:
key1: val1
vaultName: swaggerExample
Create BackupVault With CMK
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var backupVault = new AzureNative.DataProtection.BackupVault("backupVault", new()
{
Identity = new AzureNative.DataProtection.Inputs.DppIdentityDetailsArgs
{
Type = "None",
},
Location = "WestUS",
Properties = new AzureNative.DataProtection.Inputs.BackupVaultArgs
{
MonitoringSettings = new AzureNative.DataProtection.Inputs.MonitoringSettingsArgs
{
AzureMonitorAlertSettings = new AzureNative.DataProtection.Inputs.AzureMonitorAlertSettingsArgs
{
AlertsForAllJobFailures = AzureNative.DataProtection.AlertsState.Enabled,
},
},
SecuritySettings = new AzureNative.DataProtection.Inputs.SecuritySettingsArgs
{
EncryptionSettings = new AzureNative.DataProtection.Inputs.EncryptionSettingsArgs
{
InfrastructureEncryption = AzureNative.DataProtection.InfrastructureEncryptionState.Enabled,
KekIdentity = new AzureNative.DataProtection.Inputs.CmkKekIdentityArgs
{
IdentityId = "/subscriptions/85bf5e8c-3084-4f42-add2-746ebb7e97b2/resourcegroups/defaultrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplemsi",
IdentityType = AzureNative.DataProtection.IdentityType.UserAssigned,
},
KeyVaultProperties = new AzureNative.DataProtection.Inputs.CmkKeyVaultPropertiesArgs
{
KeyUri = "https://cmk2xkv.vault.azure.net/keys/Key1/0767b348bb1a4c07baa6c4ec0055d2b3",
},
State = AzureNative.DataProtection.EncryptionState.Enabled,
},
ImmutabilitySettings = new AzureNative.DataProtection.Inputs.ImmutabilitySettingsArgs
{
State = AzureNative.DataProtection.ImmutabilityState.Disabled,
},
SoftDeleteSettings = new AzureNative.DataProtection.Inputs.SoftDeleteSettingsArgs
{
RetentionDurationInDays = 0,
State = AzureNative.DataProtection.SoftDeleteState.Off,
},
},
StorageSettings = new[]
{
new AzureNative.DataProtection.Inputs.StorageSettingArgs
{
DatastoreType = AzureNative.DataProtection.StorageSettingStoreTypes.VaultStore,
Type = AzureNative.DataProtection.StorageSettingTypes.LocallyRedundant,
},
},
},
ResourceGroupName = "SampleResourceGroup",
Tags =
{
{ "key1", "val1" },
},
VaultName = "swaggerExample",
});
});
package main
import (
dataprotection "github.com/pulumi/pulumi-azure-native-sdk/dataprotection/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dataprotection.NewBackupVault(ctx, "backupVault", &dataprotection.BackupVaultArgs{
Identity: &dataprotection.DppIdentityDetailsArgs{
Type: pulumi.String("None"),
},
Location: pulumi.String("WestUS"),
Properties: &dataprotection.BackupVaultTypeArgs{
MonitoringSettings: &dataprotection.MonitoringSettingsArgs{
AzureMonitorAlertSettings: &dataprotection.AzureMonitorAlertSettingsArgs{
AlertsForAllJobFailures: pulumi.String(dataprotection.AlertsStateEnabled),
},
},
SecuritySettings: &dataprotection.SecuritySettingsArgs{
EncryptionSettings: &dataprotection.EncryptionSettingsArgs{
InfrastructureEncryption: pulumi.String(dataprotection.InfrastructureEncryptionStateEnabled),
KekIdentity: &dataprotection.CmkKekIdentityArgs{
IdentityId: pulumi.String("/subscriptions/85bf5e8c-3084-4f42-add2-746ebb7e97b2/resourcegroups/defaultrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplemsi"),
IdentityType: pulumi.String(dataprotection.IdentityTypeUserAssigned),
},
KeyVaultProperties: &dataprotection.CmkKeyVaultPropertiesArgs{
KeyUri: pulumi.String("https://cmk2xkv.vault.azure.net/keys/Key1/0767b348bb1a4c07baa6c4ec0055d2b3"),
},
State: pulumi.String(dataprotection.EncryptionStateEnabled),
},
ImmutabilitySettings: &dataprotection.ImmutabilitySettingsArgs{
State: pulumi.String(dataprotection.ImmutabilityStateDisabled),
},
SoftDeleteSettings: &dataprotection.SoftDeleteSettingsArgs{
RetentionDurationInDays: pulumi.Float64(0),
State: pulumi.String(dataprotection.SoftDeleteStateOff),
},
},
StorageSettings: dataprotection.StorageSettingArray{
&dataprotection.StorageSettingArgs{
DatastoreType: pulumi.String(dataprotection.StorageSettingStoreTypesVaultStore),
Type: pulumi.String(dataprotection.StorageSettingTypesLocallyRedundant),
},
},
},
ResourceGroupName: pulumi.String("SampleResourceGroup"),
Tags: pulumi.StringMap{
"key1": pulumi.String("val1"),
},
VaultName: pulumi.String("swaggerExample"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.dataprotection.BackupVault;
import com.pulumi.azurenative.dataprotection.inputs.DppIdentityDetailsArgs;
import com.pulumi.azurenative.dataprotection.inputs.MonitoringSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.AzureMonitorAlertSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.SecuritySettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.EncryptionSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.CmkKekIdentityArgs;
import com.pulumi.azurenative.dataprotection.inputs.CmkKeyVaultPropertiesArgs;
import com.pulumi.azurenative.dataprotection.inputs.ImmutabilitySettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.SoftDeleteSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var backupVault = new BackupVault("backupVault", BackupVaultArgs.builder()
.identity(DppIdentityDetailsArgs.builder()
.type("None")
.build())
.location("WestUS")
.properties(BackupVaultArgs.builder()
.monitoringSettings(MonitoringSettingsArgs.builder()
.azureMonitorAlertSettings(AzureMonitorAlertSettingsArgs.builder()
.alertsForAllJobFailures("Enabled")
.build())
.build())
.securitySettings(SecuritySettingsArgs.builder()
.encryptionSettings(EncryptionSettingsArgs.builder()
.infrastructureEncryption("Enabled")
.kekIdentity(CmkKekIdentityArgs.builder()
.identityId("/subscriptions/85bf5e8c-3084-4f42-add2-746ebb7e97b2/resourcegroups/defaultrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplemsi")
.identityType("UserAssigned")
.build())
.keyVaultProperties(CmkKeyVaultPropertiesArgs.builder()
.keyUri("https://cmk2xkv.vault.azure.net/keys/Key1/0767b348bb1a4c07baa6c4ec0055d2b3")
.build())
.state("Enabled")
.build())
.immutabilitySettings(ImmutabilitySettingsArgs.builder()
.state("Disabled")
.build())
.softDeleteSettings(SoftDeleteSettingsArgs.builder()
.retentionDurationInDays(0.0)
.state("Off")
.build())
.build())
.storageSettings(StorageSettingArgs.builder()
.datastoreType("VaultStore")
.type("LocallyRedundant")
.build())
.build())
.resourceGroupName("SampleResourceGroup")
.tags(Map.of("key1", "val1"))
.vaultName("swaggerExample")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const backupVault = new azure_native.dataprotection.BackupVault("backupVault", {
identity: {
type: "None",
},
location: "WestUS",
properties: {
monitoringSettings: {
azureMonitorAlertSettings: {
alertsForAllJobFailures: azure_native.dataprotection.AlertsState.Enabled,
},
},
securitySettings: {
encryptionSettings: {
infrastructureEncryption: azure_native.dataprotection.InfrastructureEncryptionState.Enabled,
kekIdentity: {
identityId: "/subscriptions/85bf5e8c-3084-4f42-add2-746ebb7e97b2/resourcegroups/defaultrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplemsi",
identityType: azure_native.dataprotection.IdentityType.UserAssigned,
},
keyVaultProperties: {
keyUri: "https://cmk2xkv.vault.azure.net/keys/Key1/0767b348bb1a4c07baa6c4ec0055d2b3",
},
state: azure_native.dataprotection.EncryptionState.Enabled,
},
immutabilitySettings: {
state: azure_native.dataprotection.ImmutabilityState.Disabled,
},
softDeleteSettings: {
retentionDurationInDays: 0,
state: azure_native.dataprotection.SoftDeleteState.Off,
},
},
storageSettings: [{
datastoreType: azure_native.dataprotection.StorageSettingStoreTypes.VaultStore,
type: azure_native.dataprotection.StorageSettingTypes.LocallyRedundant,
}],
},
resourceGroupName: "SampleResourceGroup",
tags: {
key1: "val1",
},
vaultName: "swaggerExample",
});
import pulumi
import pulumi_azure_native as azure_native
backup_vault = azure_native.dataprotection.BackupVault("backupVault",
identity={
"type": "None",
},
location="WestUS",
properties={
"monitoring_settings": {
"azure_monitor_alert_settings": {
"alerts_for_all_job_failures": azure_native.dataprotection.AlertsState.ENABLED,
},
},
"security_settings": {
"encryption_settings": {
"infrastructure_encryption": azure_native.dataprotection.InfrastructureEncryptionState.ENABLED,
"kek_identity": {
"identity_id": "/subscriptions/85bf5e8c-3084-4f42-add2-746ebb7e97b2/resourcegroups/defaultrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplemsi",
"identity_type": azure_native.dataprotection.IdentityType.USER_ASSIGNED,
},
"key_vault_properties": {
"key_uri": "https://cmk2xkv.vault.azure.net/keys/Key1/0767b348bb1a4c07baa6c4ec0055d2b3",
},
"state": azure_native.dataprotection.EncryptionState.ENABLED,
},
"immutability_settings": {
"state": azure_native.dataprotection.ImmutabilityState.DISABLED,
},
"soft_delete_settings": {
"retention_duration_in_days": 0,
"state": azure_native.dataprotection.SoftDeleteState.OFF,
},
},
"storage_settings": [{
"datastore_type": azure_native.dataprotection.StorageSettingStoreTypes.VAULT_STORE,
"type": azure_native.dataprotection.StorageSettingTypes.LOCALLY_REDUNDANT,
}],
},
resource_group_name="SampleResourceGroup",
tags={
"key1": "val1",
},
vault_name="swaggerExample")
resources:
backupVault:
type: azure-native:dataprotection:BackupVault
properties:
identity:
type: None
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:
- datastoreType: VaultStore
type: LocallyRedundant
resourceGroupName: SampleResourceGroup
tags:
key1: val1
vaultName: swaggerExample
Create BackupVault With MSI
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var backupVault = new AzureNative.DataProtection.BackupVault("backupVault", new()
{
Identity = new AzureNative.DataProtection.Inputs.DppIdentityDetailsArgs
{
Type = "systemAssigned",
},
Location = "WestUS",
Properties = new AzureNative.DataProtection.Inputs.BackupVaultArgs
{
FeatureSettings = new AzureNative.DataProtection.Inputs.FeatureSettingsArgs
{
CrossRegionRestoreSettings = new AzureNative.DataProtection.Inputs.CrossRegionRestoreSettingsArgs
{
State = AzureNative.DataProtection.CrossRegionRestoreState.Enabled,
},
},
MonitoringSettings = new AzureNative.DataProtection.Inputs.MonitoringSettingsArgs
{
AzureMonitorAlertSettings = new AzureNative.DataProtection.Inputs.AzureMonitorAlertSettingsArgs
{
AlertsForAllJobFailures = AzureNative.DataProtection.AlertsState.Enabled,
},
},
SecuritySettings = new AzureNative.DataProtection.Inputs.SecuritySettingsArgs
{
SoftDeleteSettings = new AzureNative.DataProtection.Inputs.SoftDeleteSettingsArgs
{
RetentionDurationInDays = 14,
State = "Enabled",
},
},
StorageSettings = new[]
{
new AzureNative.DataProtection.Inputs.StorageSettingArgs
{
DatastoreType = AzureNative.DataProtection.StorageSettingStoreTypes.VaultStore,
Type = AzureNative.DataProtection.StorageSettingTypes.LocallyRedundant,
},
},
},
ResourceGroupName = "SampleResourceGroup",
Tags =
{
{ "key1", "val1" },
},
VaultName = "swaggerExample",
});
});
package main
import (
dataprotection "github.com/pulumi/pulumi-azure-native-sdk/dataprotection/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dataprotection.NewBackupVault(ctx, "backupVault", &dataprotection.BackupVaultArgs{
Identity: &dataprotection.DppIdentityDetailsArgs{
Type: pulumi.String("systemAssigned"),
},
Location: pulumi.String("WestUS"),
Properties: &dataprotection.BackupVaultTypeArgs{
FeatureSettings: &dataprotection.FeatureSettingsArgs{
CrossRegionRestoreSettings: &dataprotection.CrossRegionRestoreSettingsArgs{
State: pulumi.String(dataprotection.CrossRegionRestoreStateEnabled),
},
},
MonitoringSettings: &dataprotection.MonitoringSettingsArgs{
AzureMonitorAlertSettings: &dataprotection.AzureMonitorAlertSettingsArgs{
AlertsForAllJobFailures: pulumi.String(dataprotection.AlertsStateEnabled),
},
},
SecuritySettings: &dataprotection.SecuritySettingsArgs{
SoftDeleteSettings: &dataprotection.SoftDeleteSettingsArgs{
RetentionDurationInDays: pulumi.Float64(14),
State: pulumi.String("Enabled"),
},
},
StorageSettings: dataprotection.StorageSettingArray{
&dataprotection.StorageSettingArgs{
DatastoreType: pulumi.String(dataprotection.StorageSettingStoreTypesVaultStore),
Type: pulumi.String(dataprotection.StorageSettingTypesLocallyRedundant),
},
},
},
ResourceGroupName: pulumi.String("SampleResourceGroup"),
Tags: pulumi.StringMap{
"key1": pulumi.String("val1"),
},
VaultName: pulumi.String("swaggerExample"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.dataprotection.BackupVault;
import com.pulumi.azurenative.dataprotection.inputs.DppIdentityDetailsArgs;
import com.pulumi.azurenative.dataprotection.inputs.FeatureSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.CrossRegionRestoreSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.MonitoringSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.AzureMonitorAlertSettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.SecuritySettingsArgs;
import com.pulumi.azurenative.dataprotection.inputs.SoftDeleteSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var backupVault = new BackupVault("backupVault", BackupVaultArgs.builder()
.identity(DppIdentityDetailsArgs.builder()
.type("systemAssigned")
.build())
.location("WestUS")
.properties(BackupVaultArgs.builder()
.featureSettings(FeatureSettingsArgs.builder()
.crossRegionRestoreSettings(CrossRegionRestoreSettingsArgs.builder()
.state("Enabled")
.build())
.build())
.monitoringSettings(MonitoringSettingsArgs.builder()
.azureMonitorAlertSettings(AzureMonitorAlertSettingsArgs.builder()
.alertsForAllJobFailures("Enabled")
.build())
.build())
.securitySettings(SecuritySettingsArgs.builder()
.softDeleteSettings(SoftDeleteSettingsArgs.builder()
.retentionDurationInDays(14.0)
.state("Enabled")
.build())
.build())
.storageSettings(StorageSettingArgs.builder()
.datastoreType("VaultStore")
.type("LocallyRedundant")
.build())
.build())
.resourceGroupName("SampleResourceGroup")
.tags(Map.of("key1", "val1"))
.vaultName("swaggerExample")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const backupVault = new azure_native.dataprotection.BackupVault("backupVault", {
identity: {
type: "systemAssigned",
},
location: "WestUS",
properties: {
featureSettings: {
crossRegionRestoreSettings: {
state: azure_native.dataprotection.CrossRegionRestoreState.Enabled,
},
},
monitoringSettings: {
azureMonitorAlertSettings: {
alertsForAllJobFailures: azure_native.dataprotection.AlertsState.Enabled,
},
},
securitySettings: {
softDeleteSettings: {
retentionDurationInDays: 14,
state: "Enabled",
},
},
storageSettings: [{
datastoreType: azure_native.dataprotection.StorageSettingStoreTypes.VaultStore,
type: azure_native.dataprotection.StorageSettingTypes.LocallyRedundant,
}],
},
resourceGroupName: "SampleResourceGroup",
tags: {
key1: "val1",
},
vaultName: "swaggerExample",
});
import pulumi
import pulumi_azure_native as azure_native
backup_vault = azure_native.dataprotection.BackupVault("backupVault",
identity={
"type": "systemAssigned",
},
location="WestUS",
properties={
"feature_settings": {
"cross_region_restore_settings": {
"state": azure_native.dataprotection.CrossRegionRestoreState.ENABLED,
},
},
"monitoring_settings": {
"azure_monitor_alert_settings": {
"alerts_for_all_job_failures": azure_native.dataprotection.AlertsState.ENABLED,
},
},
"security_settings": {
"soft_delete_settings": {
"retention_duration_in_days": 14,
"state": "Enabled",
},
},
"storage_settings": [{
"datastore_type": azure_native.dataprotection.StorageSettingStoreTypes.VAULT_STORE,
"type": azure_native.dataprotection.StorageSettingTypes.LOCALLY_REDUNDANT,
}],
},
resource_group_name="SampleResourceGroup",
tags={
"key1": "val1",
},
vault_name="swaggerExample")
resources:
backupVault:
type: azure-native:dataprotection:BackupVault
properties:
identity:
type: systemAssigned
location: WestUS
properties:
featureSettings:
crossRegionRestoreSettings:
state: Enabled
monitoringSettings:
azureMonitorAlertSettings:
alertsForAllJobFailures: Enabled
securitySettings:
softDeleteSettings:
retentionDurationInDays: 14
state: Enabled
storageSettings:
- datastoreType: VaultStore
type: LocallyRedundant
resourceGroupName: SampleResourceGroup
tags:
key1: val1
vaultName: swaggerExample
Create BackupVault Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BackupVault(name: string, args: BackupVaultArgs, opts?: CustomResourceOptions);
@overload
def BackupVault(resource_name: str,
args: BackupVaultInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BackupVault(resource_name: str,
opts: Optional[ResourceOptions] = None,
properties: Optional[BackupVaultArgs] = None,
resource_group_name: Optional[str] = None,
e_tag: Optional[str] = None,
identity: Optional[DppIdentityDetailsArgs] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
vault_name: Optional[str] = None)
func NewBackupVault(ctx *Context, name string, args BackupVaultArgs, opts ...ResourceOption) (*BackupVault, error)
public BackupVault(string name, BackupVaultArgs args, CustomResourceOptions? opts = null)
public BackupVault(String name, BackupVaultArgs args)
public BackupVault(String name, BackupVaultArgs args, CustomResourceOptions options)
type: azure-native:dataprotection:BackupVault
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BackupVaultArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BackupVaultInitArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BackupVaultArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BackupVaultArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BackupVaultArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var backupVaultResource = new AzureNative.DataProtection.BackupVault("backupVaultResource", new()
{
Properties = new AzureNative.DataProtection.Inputs.BackupVaultArgs
{
StorageSettings = new[]
{
new AzureNative.DataProtection.Inputs.StorageSettingArgs
{
DatastoreType = "string",
Type = "string",
},
},
FeatureSettings = new AzureNative.DataProtection.Inputs.FeatureSettingsArgs
{
CrossRegionRestoreSettings = new AzureNative.DataProtection.Inputs.CrossRegionRestoreSettingsArgs
{
State = "string",
},
CrossSubscriptionRestoreSettings = new AzureNative.DataProtection.Inputs.CrossSubscriptionRestoreSettingsArgs
{
State = "string",
},
},
MonitoringSettings = new AzureNative.DataProtection.Inputs.MonitoringSettingsArgs
{
AzureMonitorAlertSettings = new AzureNative.DataProtection.Inputs.AzureMonitorAlertSettingsArgs
{
AlertsForAllJobFailures = "string",
},
},
ReplicatedRegions = new[]
{
"string",
},
ResourceGuardOperationRequests = new[]
{
"string",
},
SecuritySettings = new AzureNative.DataProtection.Inputs.SecuritySettingsArgs
{
EncryptionSettings = new AzureNative.DataProtection.Inputs.EncryptionSettingsArgs
{
InfrastructureEncryption = "string",
KekIdentity = new AzureNative.DataProtection.Inputs.CmkKekIdentityArgs
{
IdentityId = "string",
IdentityType = "string",
},
KeyVaultProperties = new AzureNative.DataProtection.Inputs.CmkKeyVaultPropertiesArgs
{
KeyUri = "string",
},
State = "string",
},
ImmutabilitySettings = new AzureNative.DataProtection.Inputs.ImmutabilitySettingsArgs
{
State = "string",
},
SoftDeleteSettings = new AzureNative.DataProtection.Inputs.SoftDeleteSettingsArgs
{
RetentionDurationInDays = 0,
State = "string",
},
},
},
ResourceGroupName = "string",
ETag = "string",
Identity = new AzureNative.DataProtection.Inputs.DppIdentityDetailsArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Location = "string",
Tags =
{
{ "string", "string" },
},
VaultName = "string",
});
example, err := dataprotection.NewBackupVault(ctx, "backupVaultResource", &dataprotection.BackupVaultArgs{
Properties: &dataprotection.BackupVaultTypeArgs{
StorageSettings: dataprotection.StorageSettingArray{
&dataprotection.StorageSettingArgs{
DatastoreType: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
FeatureSettings: &dataprotection.FeatureSettingsArgs{
CrossRegionRestoreSettings: &dataprotection.CrossRegionRestoreSettingsArgs{
State: pulumi.String("string"),
},
CrossSubscriptionRestoreSettings: &dataprotection.CrossSubscriptionRestoreSettingsArgs{
State: pulumi.String("string"),
},
},
MonitoringSettings: &dataprotection.MonitoringSettingsArgs{
AzureMonitorAlertSettings: &dataprotection.AzureMonitorAlertSettingsArgs{
AlertsForAllJobFailures: pulumi.String("string"),
},
},
ReplicatedRegions: pulumi.StringArray{
pulumi.String("string"),
},
ResourceGuardOperationRequests: pulumi.StringArray{
pulumi.String("string"),
},
SecuritySettings: &dataprotection.SecuritySettingsArgs{
EncryptionSettings: &dataprotection.EncryptionSettingsArgs{
InfrastructureEncryption: pulumi.String("string"),
KekIdentity: &dataprotection.CmkKekIdentityArgs{
IdentityId: pulumi.String("string"),
IdentityType: pulumi.String("string"),
},
KeyVaultProperties: &dataprotection.CmkKeyVaultPropertiesArgs{
KeyUri: pulumi.String("string"),
},
State: pulumi.String("string"),
},
ImmutabilitySettings: &dataprotection.ImmutabilitySettingsArgs{
State: pulumi.String("string"),
},
SoftDeleteSettings: &dataprotection.SoftDeleteSettingsArgs{
RetentionDurationInDays: pulumi.Float64(0),
State: pulumi.String("string"),
},
},
},
ResourceGroupName: pulumi.String("string"),
ETag: pulumi.String("string"),
Identity: &dataprotection.DppIdentityDetailsArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
VaultName: pulumi.String("string"),
})
var backupVaultResource = new com.pulumi.azurenative.dataprotection.BackupVault("backupVaultResource", com.pulumi.azurenative.dataprotection.BackupVaultArgs.builder()
.properties(BackupVaultArgs.builder()
.storageSettings(StorageSettingArgs.builder()
.datastoreType("string")
.type("string")
.build())
.featureSettings(FeatureSettingsArgs.builder()
.crossRegionRestoreSettings(CrossRegionRestoreSettingsArgs.builder()
.state("string")
.build())
.crossSubscriptionRestoreSettings(CrossSubscriptionRestoreSettingsArgs.builder()
.state("string")
.build())
.build())
.monitoringSettings(MonitoringSettingsArgs.builder()
.azureMonitorAlertSettings(AzureMonitorAlertSettingsArgs.builder()
.alertsForAllJobFailures("string")
.build())
.build())
.replicatedRegions("string")
.resourceGuardOperationRequests("string")
.securitySettings(SecuritySettingsArgs.builder()
.encryptionSettings(EncryptionSettingsArgs.builder()
.infrastructureEncryption("string")
.kekIdentity(CmkKekIdentityArgs.builder()
.identityId("string")
.identityType("string")
.build())
.keyVaultProperties(CmkKeyVaultPropertiesArgs.builder()
.keyUri("string")
.build())
.state("string")
.build())
.immutabilitySettings(ImmutabilitySettingsArgs.builder()
.state("string")
.build())
.softDeleteSettings(SoftDeleteSettingsArgs.builder()
.retentionDurationInDays(0)
.state("string")
.build())
.build())
.build())
.resourceGroupName("string")
.eTag("string")
.identity(DppIdentityDetailsArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.location("string")
.tags(Map.of("string", "string"))
.vaultName("string")
.build());
backup_vault_resource = azure_native.dataprotection.BackupVault("backupVaultResource",
properties={
"storage_settings": [{
"datastore_type": "string",
"type": "string",
}],
"feature_settings": {
"cross_region_restore_settings": {
"state": "string",
},
"cross_subscription_restore_settings": {
"state": "string",
},
},
"monitoring_settings": {
"azure_monitor_alert_settings": {
"alerts_for_all_job_failures": "string",
},
},
"replicated_regions": ["string"],
"resource_guard_operation_requests": ["string"],
"security_settings": {
"encryption_settings": {
"infrastructure_encryption": "string",
"kek_identity": {
"identity_id": "string",
"identity_type": "string",
},
"key_vault_properties": {
"key_uri": "string",
},
"state": "string",
},
"immutability_settings": {
"state": "string",
},
"soft_delete_settings": {
"retention_duration_in_days": 0,
"state": "string",
},
},
},
resource_group_name="string",
e_tag="string",
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
location="string",
tags={
"string": "string",
},
vault_name="string")
const backupVaultResource = new azure_native.dataprotection.BackupVault("backupVaultResource", {
properties: {
storageSettings: [{
datastoreType: "string",
type: "string",
}],
featureSettings: {
crossRegionRestoreSettings: {
state: "string",
},
crossSubscriptionRestoreSettings: {
state: "string",
},
},
monitoringSettings: {
azureMonitorAlertSettings: {
alertsForAllJobFailures: "string",
},
},
replicatedRegions: ["string"],
resourceGuardOperationRequests: ["string"],
securitySettings: {
encryptionSettings: {
infrastructureEncryption: "string",
kekIdentity: {
identityId: "string",
identityType: "string",
},
keyVaultProperties: {
keyUri: "string",
},
state: "string",
},
immutabilitySettings: {
state: "string",
},
softDeleteSettings: {
retentionDurationInDays: 0,
state: "string",
},
},
},
resourceGroupName: "string",
eTag: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
location: "string",
tags: {
string: "string",
},
vaultName: "string",
});
type: azure-native:dataprotection:BackupVault
properties:
eTag: string
identity:
type: string
userAssignedIdentities:
- string
location: string
properties:
featureSettings:
crossRegionRestoreSettings:
state: string
crossSubscriptionRestoreSettings:
state: string
monitoringSettings:
azureMonitorAlertSettings:
alertsForAllJobFailures: string
replicatedRegions:
- string
resourceGuardOperationRequests:
- string
securitySettings:
encryptionSettings:
infrastructureEncryption: string
kekIdentity:
identityId: string
identityType: string
keyVaultProperties:
keyUri: string
state: string
immutabilitySettings:
state: string
softDeleteSettings:
retentionDurationInDays: 0
state: string
storageSettings:
- datastoreType: string
type: string
resourceGroupName: string
tags:
string: string
vaultName: string
BackupVault Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BackupVault resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. Data Protection. Inputs. Backup Vault - BackupVaultResource properties
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- ETag string
- Optional ETag.
- Identity
Pulumi.
Azure Native. Data Protection. Inputs. Dpp Identity Details - Input Managed Identity Details
- Location string
- Resource location.
- Dictionary<string, string>
- Resource tags.
- Vault
Name string - The name of the backup vault.
- Properties
Backup
Vault Type Args - BackupVaultResource properties
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- ETag string
- Optional ETag.
- Identity
Dpp
Identity Details Args - Input Managed Identity Details
- Location string
- Resource location.
- map[string]string
- Resource tags.
- Vault
Name string - The name of the backup vault.
- properties
Backup
Vault - BackupVaultResource properties
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- e
Tag String - Optional ETag.
- identity
Dpp
Identity Details - Input Managed Identity Details
- location String
- Resource location.
- Map<String,String>
- Resource tags.
- vault
Name String - The name of the backup vault.
- properties
Backup
Vault - BackupVaultResource properties
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- e
Tag string - Optional ETag.
- identity
Dpp
Identity Details - Input Managed Identity Details
- location string
- Resource location.
- {[key: string]: string}
- Resource tags.
- vault
Name string - The name of the backup vault.
- properties
Backup
Vault Args - BackupVaultResource properties
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- e_
tag str - Optional ETag.
- identity
Dpp
Identity Details Args - Input Managed Identity Details
- location str
- Resource location.
- Mapping[str, str]
- Resource tags.
- vault_
name str - The name of the backup vault.
- properties Property Map
- BackupVaultResource properties
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- e
Tag String - Optional ETag.
- identity Property Map
- Input Managed Identity Details
- location String
- Resource location.
- Map<String>
- Resource tags.
- vault
Name String - The name of the backup vault.
Outputs
All input properties are implicitly available as output properties. Additionally, the BackupVault resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name associated with the resource.
- System
Data Pulumi.Azure Native. Data Protection. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name associated with the resource.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name associated with the resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name associated with the resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name associated with the resource.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name associated with the resource.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
Supporting Types
AlertsState, AlertsStateArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Alerts
State Enabled - Enabled
- Alerts
State Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
AzureMonitorAlertSettings, AzureMonitorAlertSettingsArgs
- Alerts
For string | AlertsAll Job Failures State
- alerts
For String | AlertsAll Job Failures State
- alerts
For string | AlertsAll Job Failures State
AzureMonitorAlertSettingsResponse, AzureMonitorAlertSettingsResponseArgs
- Alerts
For stringAll Job Failures
- Alerts
For stringAll Job Failures
- alerts
For StringAll Job Failures
- alerts
For stringAll Job Failures
- alerts
For StringAll Job Failures
BackupVault, BackupVaultArgs
- Storage
Settings List<Pulumi.Azure Native. Data Protection. Inputs. Storage Setting> - Storage Settings
- Feature
Settings Pulumi.Azure Native. Data Protection. Inputs. Feature Settings - Feature Settings
- Monitoring
Settings Pulumi.Azure Native. Data Protection. Inputs. Monitoring Settings - Monitoring Settings
- Replicated
Regions List<string> - List of replicated regions for Backup Vault
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Security
Settings Pulumi.Azure Native. Data Protection. Inputs. Security Settings - Security Settings
- Storage
Settings []StorageSetting - Storage Settings
- Feature
Settings FeatureSettings - Feature Settings
- Monitoring
Settings MonitoringSettings - Monitoring Settings
- Replicated
Regions []string - List of replicated regions for Backup Vault
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Security
Settings SecuritySettings - Security Settings
- storage
Settings List<StorageSetting> - Storage Settings
- feature
Settings FeatureSettings - Feature Settings
- monitoring
Settings MonitoringSettings - Monitoring Settings
- replicated
Regions List<String> - List of replicated regions for Backup Vault
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- security
Settings SecuritySettings - Security Settings
- storage
Settings StorageSetting[] - Storage Settings
- feature
Settings FeatureSettings - Feature Settings
- monitoring
Settings MonitoringSettings - Monitoring Settings
- replicated
Regions string[] - List of replicated regions for Backup Vault
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- security
Settings SecuritySettings - Security Settings
- storage_
settings Sequence[StorageSetting] - Storage Settings
- feature_
settings FeatureSettings - Feature Settings
- monitoring_
settings MonitoringSettings - Monitoring Settings
- replicated_
regions Sequence[str] - List of replicated regions for Backup Vault
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- security_
settings SecuritySettings - Security Settings
- storage
Settings List<Property Map> - Storage Settings
- feature
Settings Property Map - Feature Settings
- monitoring
Settings Property Map - Monitoring Settings
- replicated
Regions List<String> - List of replicated regions for Backup Vault
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- security
Settings Property Map - Security Settings
BackupVaultResponse, BackupVaultResponseArgs
- Bcdr
Security stringLevel - Security Level of Backup Vault
- Is
Vault boolProtected By Resource Guard - Is vault protected by resource guard
- Provisioning
State string - Provisioning state of the BackupVault resource
- Resource
Move Pulumi.Details Azure Native. Data Protection. Inputs. Resource Move Details Response - Resource move details for backup vault
- Resource
Move stringState - Resource move state for backup vault
- Secure
Score string - Secure Score of Backup Vault
- Storage
Settings List<Pulumi.Azure Native. Data Protection. Inputs. Storage Setting Response> - Storage Settings
- Feature
Settings Pulumi.Azure Native. Data Protection. Inputs. Feature Settings Response - Feature Settings
- Monitoring
Settings Pulumi.Azure Native. Data Protection. Inputs. Monitoring Settings Response - Monitoring Settings
- Replicated
Regions List<string> - List of replicated regions for Backup Vault
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Security
Settings Pulumi.Azure Native. Data Protection. Inputs. Security Settings Response - Security Settings
- Bcdr
Security stringLevel - Security Level of Backup Vault
- Is
Vault boolProtected By Resource Guard - Is vault protected by resource guard
- Provisioning
State string - Provisioning state of the BackupVault resource
- Resource
Move ResourceDetails Move Details Response - Resource move details for backup vault
- Resource
Move stringState - Resource move state for backup vault
- Secure
Score string - Secure Score of Backup Vault
- Storage
Settings []StorageSetting Response - Storage Settings
- Feature
Settings FeatureSettings Response - Feature Settings
- Monitoring
Settings MonitoringSettings Response - Monitoring Settings
- Replicated
Regions []string - List of replicated regions for Backup Vault
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Security
Settings SecuritySettings Response - Security Settings
- bcdr
Security StringLevel - Security Level of Backup Vault
- is
Vault BooleanProtected By Resource Guard - Is vault protected by resource guard
- provisioning
State String - Provisioning state of the BackupVault resource
- resource
Move ResourceDetails Move Details Response - Resource move details for backup vault
- resource
Move StringState - Resource move state for backup vault
- secure
Score String - Secure Score of Backup Vault
- storage
Settings List<StorageSetting Response> - Storage Settings
- feature
Settings FeatureSettings Response - Feature Settings
- monitoring
Settings MonitoringSettings Response - Monitoring Settings
- replicated
Regions List<String> - List of replicated regions for Backup Vault
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- security
Settings SecuritySettings Response - Security Settings
- bcdr
Security stringLevel - Security Level of Backup Vault
- is
Vault booleanProtected By Resource Guard - Is vault protected by resource guard
- provisioning
State string - Provisioning state of the BackupVault resource
- resource
Move ResourceDetails Move Details Response - Resource move details for backup vault
- resource
Move stringState - Resource move state for backup vault
- secure
Score string - Secure Score of Backup Vault
- storage
Settings StorageSetting Response[] - Storage Settings
- feature
Settings FeatureSettings Response - Feature Settings
- monitoring
Settings MonitoringSettings Response - Monitoring Settings
- replicated
Regions string[] - List of replicated regions for Backup Vault
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- security
Settings SecuritySettings Response - Security Settings
- bcdr_
security_ strlevel - Security Level of Backup Vault
- is_
vault_ boolprotected_ by_ resource_ guard - Is vault protected by resource guard
- provisioning_
state str - Provisioning state of the BackupVault resource
- resource_
move_ Resourcedetails Move Details Response - Resource move details for backup vault
- resource_
move_ strstate - Resource move state for backup vault
- secure_
score str - Secure Score of Backup Vault
- storage_
settings Sequence[StorageSetting Response] - Storage Settings
- feature_
settings FeatureSettings Response - Feature Settings
- monitoring_
settings MonitoringSettings Response - Monitoring Settings
- replicated_
regions Sequence[str] - List of replicated regions for Backup Vault
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- security_
settings SecuritySettings Response - Security Settings
- bcdr
Security StringLevel - Security Level of Backup Vault
- is
Vault BooleanProtected By Resource Guard - Is vault protected by resource guard
- provisioning
State String - Provisioning state of the BackupVault resource
- resource
Move Property MapDetails - Resource move details for backup vault
- resource
Move StringState - Resource move state for backup vault
- secure
Score String - Secure Score of Backup Vault
- storage
Settings List<Property Map> - Storage Settings
- feature
Settings Property Map - Feature Settings
- monitoring
Settings Property Map - Monitoring Settings
- replicated
Regions List<String> - List of replicated regions for Backup Vault
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- security
Settings Property Map - Security Settings
CmkKekIdentity, CmkKekIdentityArgs
- Identity
Id 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.
- Identity
Type string | Pulumi.Azure Native. Data Protection. Identity Type - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- Identity
Id 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.
- Identity
Type string | IdentityType - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity
Id 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.
- identity
Type String | IdentityType - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity
Id 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.
- identity
Type string | IdentityType - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity_
id str - The managed identity to be used which has access permissions to the Key Vault. Provide a value here in case identity types: 'UserAssigned' only.
- identity_
type str | IdentityType - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity
Id 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.
- identity
Type String | "SystemAssigned" | "User Assigned" - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
CmkKekIdentityResponse, CmkKekIdentityResponseArgs
- Identity
Id 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.
- Identity
Type string - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- Identity
Id 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.
- Identity
Type string - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity
Id 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.
- identity
Type String - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity
Id 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.
- identity
Type string - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity_
id str - The managed identity to be used which has access permissions to the Key Vault. Provide a value here in case identity types: 'UserAssigned' only.
- identity_
type str - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
- identity
Id 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.
- identity
Type String - The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
CmkKeyVaultProperties, CmkKeyVaultPropertiesArgs
- Key
Uri string - The key uri of the Customer Managed Key
- Key
Uri string - The key uri of the Customer Managed Key
- key
Uri String - The key uri of the Customer Managed Key
- key
Uri string - The key uri of the Customer Managed Key
- key_
uri str - The key uri of the Customer Managed Key
- key
Uri String - The key uri of the Customer Managed Key
CmkKeyVaultPropertiesResponse, CmkKeyVaultPropertiesResponseArgs
- Key
Uri string - The key uri of the Customer Managed Key
- Key
Uri string - The key uri of the Customer Managed Key
- key
Uri String - The key uri of the Customer Managed Key
- key
Uri string - The key uri of the Customer Managed Key
- key_
uri str - The key uri of the Customer Managed Key
- key
Uri String - The key uri of the Customer Managed Key
CrossRegionRestoreSettings, CrossRegionRestoreSettingsArgs
- State
string | Pulumi.
Azure Native. Data Protection. Cross Region Restore State - CrossRegionRestore state
- State
string | Cross
Region Restore State - CrossRegionRestore state
- state
String | Cross
Region Restore State - CrossRegionRestore state
- state
string | Cross
Region Restore State - CrossRegionRestore state
- state
str | Cross
Region Restore State - CrossRegionRestore state
- state String | "Disabled" | "Enabled"
- CrossRegionRestore state
CrossRegionRestoreSettingsResponse, CrossRegionRestoreSettingsResponseArgs
- State string
- CrossRegionRestore state
- State string
- CrossRegionRestore state
- state String
- CrossRegionRestore state
- state string
- CrossRegionRestore state
- state str
- CrossRegionRestore state
- state String
- CrossRegionRestore state
CrossRegionRestoreState, CrossRegionRestoreStateArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Cross
Region Restore State Disabled - Disabled
- Cross
Region Restore State Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
CrossSubscriptionRestoreSettings, CrossSubscriptionRestoreSettingsArgs
- State
string | Pulumi.
Azure Native. Data Protection. Cross Subscription Restore State - CrossSubscriptionRestore state
- State
string | Cross
Subscription Restore State - CrossSubscriptionRestore state
- state
String | Cross
Subscription Restore State - CrossSubscriptionRestore state
- state
string | Cross
Subscription Restore State - CrossSubscriptionRestore state
- state
str | Cross
Subscription Restore State - CrossSubscriptionRestore state
- state
String | "Disabled" | "Permanently
Disabled" | "Enabled" - CrossSubscriptionRestore state
CrossSubscriptionRestoreSettingsResponse, CrossSubscriptionRestoreSettingsResponseArgs
- State string
- CrossSubscriptionRestore state
- State string
- CrossSubscriptionRestore state
- state String
- CrossSubscriptionRestore state
- state string
- CrossSubscriptionRestore state
- state str
- CrossSubscriptionRestore state
- state String
- CrossSubscriptionRestore state
CrossSubscriptionRestoreState, CrossSubscriptionRestoreStateArgs
- Disabled
- Disabled
- Permanently
Disabled - PermanentlyDisabled
- Enabled
- Enabled
- Cross
Subscription Restore State Disabled - Disabled
- Cross
Subscription Restore State Permanently Disabled - PermanentlyDisabled
- Cross
Subscription Restore State Enabled - Enabled
- Disabled
- Disabled
- Permanently
Disabled - PermanentlyDisabled
- Enabled
- Enabled
- Disabled
- Disabled
- Permanently
Disabled - PermanentlyDisabled
- Enabled
- Enabled
- DISABLED
- Disabled
- PERMANENTLY_DISABLED
- PermanentlyDisabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Permanently
Disabled" - PermanentlyDisabled
- "Enabled"
- Enabled
DppIdentityDetails, DppIdentityDetailsArgs
- Type string
- The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
- User
Assigned List<string>Identities - Gets or sets the user assigned identities.
- Type string
- The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
- User
Assigned []stringIdentities - Gets or sets the user assigned identities.
- type String
- The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
- user
Assigned List<String>Identities - Gets or sets the user assigned identities.
- type string
- The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
- user
Assigned string[]Identities - Gets or sets the user assigned identities.
- type str
- The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
- user_
assigned_ Sequence[str]identities - Gets or sets the user assigned identities.
- type String
- The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
- user
Assigned List<String>Identities - Gets or sets the user assigned identities.
DppIdentityDetailsResponse, DppIdentityDetailsResponseArgs
- Principal
Id 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.
- Tenant
Id 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
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Data Protection. Inputs. User Assigned Identity Response> - Gets or sets the user assigned identities.
- Principal
Id 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.
- Tenant
Id 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
- User
Assigned map[string]UserIdentities Assigned Identity Response - Gets or sets the user assigned identities.
- principal
Id 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.
- tenant
Id 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
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - Gets or sets the user assigned identities.
- principal
Id 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.
- tenant
Id 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
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - Gets or sets the user assigned identities.
- principal_
id str - The object ID of the service principal object for the managed identity that is used to grant role-based access to an Azure resource.
- tenant_
id str - A Globally Unique Identifier (GUID) that represents the Azure AD tenant where the resource is now a member.
- type str
- The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - Gets or sets the user assigned identities.
- principal
Id 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.
- tenant
Id 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
- user
Assigned Map<Property Map>Identities - Gets or sets the user assigned identities.
EncryptionSettings, EncryptionSettingsArgs
- Infrastructure
Encryption string | Pulumi.Azure Native. Data Protection. Infrastructure Encryption State - Enabling/Disabling the Double Encryption state
- Kek
Identity Pulumi.Azure Native. Data Protection. Inputs. Cmk Kek Identity - The details of the managed identity used for CMK
- Key
Vault Pulumi.Properties Azure Native. Data Protection. Inputs. Cmk Key Vault Properties - The properties of the Key Vault which hosts CMK
- State
string | Pulumi.
Azure Native. Data Protection. Encryption State - Encryption state of the Backup Vault.
- Infrastructure
Encryption string | InfrastructureEncryption State - Enabling/Disabling the Double Encryption state
- Kek
Identity CmkKek Identity - The details of the managed identity used for CMK
- Key
Vault CmkProperties Key Vault Properties - The properties of the Key Vault which hosts CMK
- State
string | Encryption
State - Encryption state of the Backup Vault.
- infrastructure
Encryption String | InfrastructureEncryption State - Enabling/Disabling the Double Encryption state
- kek
Identity CmkKek Identity - The details of the managed identity used for CMK
- key
Vault CmkProperties Key Vault Properties - The properties of the Key Vault which hosts CMK
- state
String | Encryption
State - Encryption state of the Backup Vault.
- infrastructure
Encryption string | InfrastructureEncryption State - Enabling/Disabling the Double Encryption state
- kek
Identity CmkKek Identity - The details of the managed identity used for CMK
- key
Vault CmkProperties Key Vault Properties - The properties of the Key Vault which hosts CMK
- state
string | Encryption
State - Encryption state of the Backup Vault.
- infrastructure_
encryption str | InfrastructureEncryption State - Enabling/Disabling the Double Encryption state
- kek_
identity CmkKek Identity - The details of the managed identity used for CMK
- key_
vault_ Cmkproperties Key Vault Properties - The properties of the Key Vault which hosts CMK
- state
str | Encryption
State - Encryption state of the Backup Vault.
- infrastructure
Encryption String | "Enabled" | "Disabled" - Enabling/Disabling the Double Encryption state
- kek
Identity Property Map - The details of the managed identity used for CMK
- key
Vault Property MapProperties - The properties of the Key Vault which hosts CMK
- state String | "Enabled" | "Disabled" | "Inconsistent"
- Encryption state of the Backup Vault.
EncryptionSettingsResponse, EncryptionSettingsResponseArgs
- Infrastructure
Encryption string - Enabling/Disabling the Double Encryption state
- Kek
Identity Pulumi.Azure Native. Data Protection. Inputs. Cmk Kek Identity Response - The details of the managed identity used for CMK
- Key
Vault Pulumi.Properties Azure Native. Data Protection. Inputs. Cmk Key Vault Properties Response - The properties of the Key Vault which hosts CMK
- State string
- Encryption state of the Backup Vault.
- Infrastructure
Encryption string - Enabling/Disabling the Double Encryption state
- Kek
Identity CmkKek Identity Response - The details of the managed identity used for CMK
- Key
Vault CmkProperties Key Vault Properties Response - The properties of the Key Vault which hosts CMK
- State string
- Encryption state of the Backup Vault.
- infrastructure
Encryption String - Enabling/Disabling the Double Encryption state
- kek
Identity CmkKek Identity Response - The details of the managed identity used for CMK
- key
Vault CmkProperties Key Vault Properties Response - The properties of the Key Vault which hosts CMK
- state String
- Encryption state of the Backup Vault.
- infrastructure
Encryption string - Enabling/Disabling the Double Encryption state
- kek
Identity CmkKek Identity Response - The details of the managed identity used for CMK
- key
Vault CmkProperties Key Vault Properties Response - The properties of the Key Vault which hosts CMK
- state string
- Encryption state of the Backup Vault.
- infrastructure_
encryption str - Enabling/Disabling the Double Encryption state
- kek_
identity CmkKek Identity Response - The details of the managed identity used for CMK
- key_
vault_ Cmkproperties Key Vault Properties Response - The properties of the Key Vault which hosts CMK
- state str
- Encryption state of the Backup Vault.
- infrastructure
Encryption String - Enabling/Disabling the Double Encryption state
- kek
Identity Property Map - The details of the managed identity used for CMK
- key
Vault Property MapProperties - The properties of the Key Vault which hosts CMK
- state String
- Encryption state of the Backup Vault.
EncryptionState, EncryptionStateArgs
- Enabled
- EnabledCMK encryption is enabled on the Backup Vault
- Disabled
- DisabledCMK encryption is disabled on the Backup Vault. User can not set this state once Encryption State is 'Enabled'.
- Inconsistent
- InconsistentCMK 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.
- Encryption
State Enabled - EnabledCMK encryption is enabled on the Backup Vault
- Encryption
State Disabled - DisabledCMK encryption is disabled on the Backup Vault. User can not set this state once Encryption State is 'Enabled'.
- Encryption
State Inconsistent - InconsistentCMK 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.
- Enabled
- EnabledCMK encryption is enabled on the Backup Vault
- Disabled
- DisabledCMK encryption is disabled on the Backup Vault. User can not set this state once Encryption State is 'Enabled'.
- Inconsistent
- InconsistentCMK 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.
- Enabled
- EnabledCMK encryption is enabled on the Backup Vault
- Disabled
- DisabledCMK encryption is disabled on the Backup Vault. User can not set this state once Encryption State is 'Enabled'.
- Inconsistent
- InconsistentCMK 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.
- ENABLED
- EnabledCMK encryption is enabled on the Backup Vault
- DISABLED
- DisabledCMK encryption is disabled on the Backup Vault. User can not set this state once Encryption State is 'Enabled'.
- INCONSISTENT
- InconsistentCMK 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.
- "Enabled"
- EnabledCMK encryption is enabled on the Backup Vault
- "Disabled"
- DisabledCMK encryption is disabled on the Backup Vault. User can not set this state once Encryption State is 'Enabled'.
- "Inconsistent"
- InconsistentCMK 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.
FeatureSettings, FeatureSettingsArgs
- Cross
Region CrossRestore Settings Region Restore Settings - Cross
Subscription CrossRestore Settings Subscription Restore Settings - CrossSubscriptionRestore Settings
- cross
Region CrossRestore Settings Region Restore Settings - cross
Subscription CrossRestore Settings Subscription Restore Settings - CrossSubscriptionRestore Settings
- cross
Region CrossRestore Settings Region Restore Settings - cross
Subscription CrossRestore Settings Subscription Restore Settings - CrossSubscriptionRestore Settings
- cross_
region_ Crossrestore_ settings Region Restore Settings - cross_
subscription_ Crossrestore_ settings Subscription Restore Settings - CrossSubscriptionRestore Settings
- cross
Region Property MapRestore Settings - cross
Subscription Property MapRestore Settings - CrossSubscriptionRestore Settings
FeatureSettingsResponse, FeatureSettingsResponseArgs
- Cross
Region CrossRestore Settings Region Restore Settings Response - Cross
Subscription CrossRestore Settings Subscription Restore Settings Response - CrossSubscriptionRestore Settings
- cross
Region CrossRestore Settings Region Restore Settings Response - cross
Subscription CrossRestore Settings Subscription Restore Settings Response - CrossSubscriptionRestore Settings
- cross
Region CrossRestore Settings Region Restore Settings Response - cross
Subscription CrossRestore Settings Subscription Restore Settings Response - CrossSubscriptionRestore Settings
- cross_
region_ Crossrestore_ settings Region Restore Settings Response - cross_
subscription_ Crossrestore_ settings Subscription Restore Settings Response - CrossSubscriptionRestore Settings
- cross
Region Property MapRestore Settings - cross
Subscription Property MapRestore Settings - CrossSubscriptionRestore Settings
IdentityType, IdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- Identity
Type System Assigned - SystemAssigned
- Identity
Type User Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
ImmutabilitySettings, ImmutabilitySettingsArgs
- State
string | Pulumi.
Azure Native. Data Protection. Immutability State - Immutability state
- State
string | Immutability
State - Immutability state
- state
String | Immutability
State - Immutability state
- state
string | Immutability
State - Immutability state
- state
str | Immutability
State - Immutability state
- state String | "Disabled" | "Unlocked" | "Locked"
- Immutability state
ImmutabilitySettingsResponse, ImmutabilitySettingsResponseArgs
- State string
- Immutability state
- State string
- Immutability state
- state String
- Immutability state
- state string
- Immutability state
- state str
- Immutability state
- state String
- Immutability state
ImmutabilityState, ImmutabilityStateArgs
- Disabled
- Disabled
- Unlocked
- Unlocked
- Locked
- Locked
- Immutability
State Disabled - Disabled
- Immutability
State Unlocked - Unlocked
- Immutability
State Locked - Locked
- Disabled
- Disabled
- Unlocked
- Unlocked
- Locked
- Locked
- Disabled
- Disabled
- Unlocked
- Unlocked
- Locked
- Locked
- DISABLED
- Disabled
- UNLOCKED
- Unlocked
- LOCKED
- Locked
- "Disabled"
- Disabled
- "Unlocked"
- Unlocked
- "Locked"
- Locked
InfrastructureEncryptionState, InfrastructureEncryptionStateArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Infrastructure
Encryption State Enabled - Enabled
- Infrastructure
Encryption State Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
MonitoringSettings, MonitoringSettingsArgs
- Azure
Monitor Pulumi.Alert Settings Azure Native. Data Protection. Inputs. Azure Monitor Alert Settings - Settings for Azure Monitor based alerts
- Azure
Monitor AzureAlert Settings Monitor Alert Settings - Settings for Azure Monitor based alerts
- azure
Monitor AzureAlert Settings Monitor Alert Settings - Settings for Azure Monitor based alerts
- azure
Monitor AzureAlert Settings Monitor Alert Settings - Settings for Azure Monitor based alerts
- azure_
monitor_ Azurealert_ settings Monitor Alert Settings - Settings for Azure Monitor based alerts
- azure
Monitor Property MapAlert Settings - Settings for Azure Monitor based alerts
MonitoringSettingsResponse, MonitoringSettingsResponseArgs
- Azure
Monitor Pulumi.Alert Settings Azure Native. Data Protection. Inputs. Azure Monitor Alert Settings Response - Settings for Azure Monitor based alerts
- Azure
Monitor AzureAlert Settings Monitor Alert Settings Response - Settings for Azure Monitor based alerts
- azure
Monitor AzureAlert Settings Monitor Alert Settings Response - Settings for Azure Monitor based alerts
- azure
Monitor AzureAlert Settings Monitor Alert Settings Response - Settings for Azure Monitor based alerts
- azure_
monitor_ Azurealert_ settings Monitor Alert Settings Response - Settings for Azure Monitor based alerts
- azure
Monitor Property MapAlert Settings - Settings for Azure Monitor based alerts
ResourceMoveDetailsResponse, ResourceMoveDetailsResponseArgs
- Completion
Time stringUtc - Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- Operation
Id string - CorrelationId of latest ResourceMove operation attempted
- Source
Resource stringPath - ARM resource path of source resource
- Start
Time stringUtc - Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- Target
Resource stringPath - ARM resource path of target resource used in latest ResourceMove operation
- Completion
Time stringUtc - Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- Operation
Id string - CorrelationId of latest ResourceMove operation attempted
- Source
Resource stringPath - ARM resource path of source resource
- Start
Time stringUtc - Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- Target
Resource stringPath - ARM resource path of target resource used in latest ResourceMove operation
- completion
Time StringUtc - Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- operation
Id String - CorrelationId of latest ResourceMove operation attempted
- source
Resource StringPath - ARM resource path of source resource
- start
Time StringUtc - Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- target
Resource StringPath - ARM resource path of target resource used in latest ResourceMove operation
- completion
Time stringUtc - Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- operation
Id string - CorrelationId of latest ResourceMove operation attempted
- source
Resource stringPath - ARM resource path of source resource
- start
Time stringUtc - Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- target
Resource stringPath - ARM resource path of target resource used in latest ResourceMove operation
- completion_
time_ strutc - Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- operation_
id str - CorrelationId of latest ResourceMove operation attempted
- source_
resource_ strpath - ARM resource path of source resource
- start_
time_ strutc - Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- target_
resource_ strpath - ARM resource path of target resource used in latest ResourceMove operation
- completion
Time StringUtc - Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- operation
Id String - CorrelationId of latest ResourceMove operation attempted
- source
Resource StringPath - ARM resource path of source resource
- start
Time StringUtc - Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
- target
Resource StringPath - ARM resource path of target resource used in latest ResourceMove operation
SecuritySettings, SecuritySettingsArgs
- Encryption
Settings Pulumi.Azure Native. Data Protection. Inputs. Encryption Settings - Customer Managed Key details of the resource.
- Immutability
Settings Pulumi.Azure Native. Data Protection. Inputs. Immutability Settings - Immutability Settings at vault level
- Soft
Delete Pulumi.Settings Azure Native. Data Protection. Inputs. Soft Delete Settings - Soft delete related settings
- Encryption
Settings EncryptionSettings - Customer Managed Key details of the resource.
- Immutability
Settings ImmutabilitySettings - Immutability Settings at vault level
- Soft
Delete SoftSettings Delete Settings - Soft delete related settings
- encryption
Settings EncryptionSettings - Customer Managed Key details of the resource.
- immutability
Settings ImmutabilitySettings - Immutability Settings at vault level
- soft
Delete SoftSettings Delete Settings - Soft delete related settings
- encryption
Settings EncryptionSettings - Customer Managed Key details of the resource.
- immutability
Settings ImmutabilitySettings - Immutability Settings at vault level
- soft
Delete SoftSettings Delete Settings - Soft delete related settings
- encryption_
settings EncryptionSettings - Customer Managed Key details of the resource.
- immutability_
settings ImmutabilitySettings - Immutability Settings at vault level
- soft_
delete_ Softsettings Delete Settings - Soft delete related settings
- encryption
Settings Property Map - Customer Managed Key details of the resource.
- immutability
Settings Property Map - Immutability Settings at vault level
- soft
Delete Property MapSettings - Soft delete related settings
SecuritySettingsResponse, SecuritySettingsResponseArgs
- Encryption
Settings Pulumi.Azure Native. Data Protection. Inputs. Encryption Settings Response - Customer Managed Key details of the resource.
- Immutability
Settings Pulumi.Azure Native. Data Protection. Inputs. Immutability Settings Response - Immutability Settings at vault level
- Soft
Delete Pulumi.Settings Azure Native. Data Protection. Inputs. Soft Delete Settings Response - Soft delete related settings
- Encryption
Settings EncryptionSettings Response - Customer Managed Key details of the resource.
- Immutability
Settings ImmutabilitySettings Response - Immutability Settings at vault level
- Soft
Delete SoftSettings Delete Settings Response - Soft delete related settings
- encryption
Settings EncryptionSettings Response - Customer Managed Key details of the resource.
- immutability
Settings ImmutabilitySettings Response - Immutability Settings at vault level
- soft
Delete SoftSettings Delete Settings Response - Soft delete related settings
- encryption
Settings EncryptionSettings Response - Customer Managed Key details of the resource.
- immutability
Settings ImmutabilitySettings Response - Immutability Settings at vault level
- soft
Delete SoftSettings Delete Settings Response - Soft delete related settings
- encryption_
settings EncryptionSettings Response - Customer Managed Key details of the resource.
- immutability_
settings ImmutabilitySettings Response - Immutability Settings at vault level
- soft_
delete_ Softsettings Delete Settings Response - Soft delete related settings
- encryption
Settings Property Map - Customer Managed Key details of the resource.
- immutability
Settings Property Map - Immutability Settings at vault level
- soft
Delete Property MapSettings - Soft delete related settings
SoftDeleteSettings, SoftDeleteSettingsArgs
- Retention
Duration doubleIn Days - Soft delete retention duration
- State
string | Pulumi.
Azure Native. Data Protection. Soft Delete State - State of soft delete
- Retention
Duration float64In Days - Soft delete retention duration
- State
string | Soft
Delete State - State of soft delete
- retention
Duration DoubleIn Days - Soft delete retention duration
- state
String | Soft
Delete State - State of soft delete
- retention
Duration numberIn Days - Soft delete retention duration
- state
string | Soft
Delete State - State of soft delete
- retention_
duration_ floatin_ days - Soft delete retention duration
- state
str | Soft
Delete State - State of soft delete
- retention
Duration NumberIn Days - Soft delete retention duration
- state
String | "Off" | "On" | "Always
On" - State of soft delete
SoftDeleteSettingsResponse, SoftDeleteSettingsResponseArgs
- Retention
Duration doubleIn Days - Soft delete retention duration
- State string
- State of soft delete
- Retention
Duration float64In Days - Soft delete retention duration
- State string
- State of soft delete
- retention
Duration DoubleIn Days - Soft delete retention duration
- state String
- State of soft delete
- retention
Duration numberIn Days - Soft delete retention duration
- state string
- State of soft delete
- retention_
duration_ floatin_ days - Soft delete retention duration
- state str
- State of soft delete
- retention
Duration NumberIn Days - Soft delete retention duration
- state String
- State of soft delete
SoftDeleteState, SoftDeleteStateArgs
- Off
- OffSoft Delete is turned off for the BackupVault
- On
- OnSoft Delete is enabled for the BackupVault but can be turned off
- Always
On - AlwaysOnSoft Delete is permanently enabled for the BackupVault and the setting cannot be changed
- Soft
Delete State Off - OffSoft Delete is turned off for the BackupVault
- Soft
Delete State On - OnSoft Delete is enabled for the BackupVault but can be turned off
- Soft
Delete State Always On - AlwaysOnSoft Delete is permanently enabled for the BackupVault and the setting cannot be changed
- Off
- OffSoft Delete is turned off for the BackupVault
- On
- OnSoft Delete is enabled for the BackupVault but can be turned off
- Always
On - AlwaysOnSoft Delete is permanently enabled for the BackupVault and the setting cannot be changed
- Off
- OffSoft Delete is turned off for the BackupVault
- On
- OnSoft Delete is enabled for the BackupVault but can be turned off
- Always
On - AlwaysOnSoft Delete is permanently enabled for the BackupVault and the setting cannot be changed
- OFF
- OffSoft Delete is turned off for the BackupVault
- ON
- OnSoft Delete is enabled for the BackupVault but can be turned off
- ALWAYS_ON
- AlwaysOnSoft Delete is permanently enabled for the BackupVault and the setting cannot be changed
- "Off"
- OffSoft Delete is turned off for the BackupVault
- "On"
- OnSoft Delete is enabled for the BackupVault but can be turned off
- "Always
On" - AlwaysOnSoft Delete is permanently enabled for the BackupVault and the setting cannot be changed
StorageSetting, StorageSettingArgs
- Datastore
Type string | Pulumi.Azure Native. Data Protection. Storage Setting Store Types - Gets or sets the type of the datastore.
- Type
string | Pulumi.
Azure Native. Data Protection. Storage Setting Types - Gets or sets the type.
- Datastore
Type string | StorageSetting Store Types - Gets or sets the type of the datastore.
- Type
string | Storage
Setting Types - Gets or sets the type.
- datastore
Type String | StorageSetting Store Types - Gets or sets the type of the datastore.
- type
String | Storage
Setting Types - Gets or sets the type.
- datastore
Type string | StorageSetting Store Types - Gets or sets the type of the datastore.
- type
string | Storage
Setting Types - Gets or sets the type.
- datastore_
type str | StorageSetting Store Types - Gets or sets the type of the datastore.
- type
str | Storage
Setting Types - Gets or sets the type.
- datastore
Type String | "ArchiveStore" | "Operational Store" | "Vault Store" - Gets or sets the type of the datastore.
- type
String | "Geo
Redundant" | "Locally Redundant" | "Zone Redundant" - Gets or sets the type.
StorageSettingResponse, StorageSettingResponseArgs
- Datastore
Type string - Gets or sets the type of the datastore.
- Type string
- Gets or sets the type.
- Datastore
Type string - Gets or sets the type of the datastore.
- Type string
- Gets or sets the type.
- datastore
Type String - Gets or sets the type of the datastore.
- type String
- Gets or sets the type.
- datastore
Type string - Gets or sets the type of the datastore.
- type string
- Gets or sets the type.
- datastore_
type str - Gets or sets the type of the datastore.
- type str
- Gets or sets the type.
- datastore
Type String - Gets or sets the type of the datastore.
- type String
- Gets or sets the type.
StorageSettingStoreTypes, StorageSettingStoreTypesArgs
- Archive
Store - ArchiveStore
- Operational
Store - OperationalStore
- Vault
Store - VaultStore
- Storage
Setting Store Types Archive Store - ArchiveStore
- Storage
Setting Store Types Operational Store - OperationalStore
- Storage
Setting Store Types Vault Store - VaultStore
- Archive
Store - ArchiveStore
- Operational
Store - OperationalStore
- Vault
Store - VaultStore
- Archive
Store - ArchiveStore
- Operational
Store - OperationalStore
- Vault
Store - VaultStore
- ARCHIVE_STORE
- ArchiveStore
- OPERATIONAL_STORE
- OperationalStore
- VAULT_STORE
- VaultStore
- "Archive
Store" - ArchiveStore
- "Operational
Store" - OperationalStore
- "Vault
Store" - VaultStore
StorageSettingTypes, StorageSettingTypesArgs
- Geo
Redundant - GeoRedundant
- Locally
Redundant - LocallyRedundant
- Zone
Redundant - ZoneRedundant
- Storage
Setting Types Geo Redundant - GeoRedundant
- Storage
Setting Types Locally Redundant - LocallyRedundant
- Storage
Setting Types Zone Redundant - ZoneRedundant
- Geo
Redundant - GeoRedundant
- Locally
Redundant - LocallyRedundant
- Zone
Redundant - ZoneRedundant
- Geo
Redundant - GeoRedundant
- Locally
Redundant - LocallyRedundant
- Zone
Redundant - ZoneRedundant
- GEO_REDUNDANT
- GeoRedundant
- LOCALLY_REDUNDANT
- LocallyRedundant
- ZONE_REDUNDANT
- ZoneRedundant
- "Geo
Redundant" - GeoRedundant
- "Locally
Redundant" - LocallyRedundant
- "Zone
Redundant" - ZoneRedundant
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:dataprotection:BackupVault swaggerExample /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataProtection/backupVaults/{vaultName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0