Microsoft.DataProtection backupVaults
Bicep 리소스 정의
backupVaults 리소스 종류는 다음으로 배포할 수 있습니다.
- 리소스 그룹 - 리소스 그룹 배포 명령 참조
각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.
리소스 형식
Microsoft.DataProtection/backupVaults 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.
resource symbolicname 'Microsoft.DataProtection/backupVaults@2022-11-01-preview' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
eTag: 'string'
identity: {
type: 'string'
}
properties: {
monitoringSettings: {
azureMonitorAlertSettings: {
alertsForAllJobFailures: 'string'
}
}
securitySettings: {
immutabilitySettings: {
state: 'string'
}
softDeleteSettings: {
retentionDurationInDays: int
state: 'string'
}
}
storageSettings: [
{
datastoreType: 'string'
type: 'string'
}
]
}
}
속성 값
backupVaults
Name | Description | 값 |
---|---|---|
name | 리소스 이름 | string(필수) |
위치 | 리소스 위치. | string |
tags | 리소스 태그. | 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요. |
eTag | 선택적 ETag입니다. | string |
identity | 입력 관리 ID 세부 정보 | DppIdentityDetails |
properties | BackupVaultResource 속성 | BackupVault (필수) |
DppIdentityDetails
Name | Description | 값 |
---|---|---|
형식 | SystemAssigned 또는 None일 수 있는 identityType | 문자열 |
BackupVault
Name | Description | 값 |
---|---|---|
monitoringSettings | 모니터링 설정 | MonitoringSettings |
securitySettings | 보안 설정 | SecuritySettings |
storageSettings | 스토리지 설정 | StorageSetting[] (필수) |
MonitoringSettings
Name | Description | 값 |
---|---|---|
azureMonitorAlertSettings | Azure Monitor 기반 경고에 대한 설정 | AzureMonitorAlertSettings |
AzureMonitorAlertSettings
Name | Description | 값 |
---|---|---|
alertsForAllJobFailures | '사용 안 함' '사용' |
SecuritySettings
Name | Description | 값 |
---|---|---|
불변성설정 | 자격 증명 모음 수준의 불변성 설정 | 불변성설정 |
softDeleteSettings | 일시 삭제 관련 설정 | SoftDeleteSettings |
불변성설정
Name | Description | 값 |
---|---|---|
state | 불변성 상태 | '사용 안 함' '잠김' '잠금 해제됨' |
SoftDeleteSettings
Name | Description | 값 |
---|---|---|
retentionDurationInDays | 일시 삭제 보존 기간 | int |
state | 일시 삭제 상태 | 'AlwaysOn' '끄기' 'On' |
StorageSetting
Name | Description | 값 |
---|---|---|
datastoreType | 데이터 저장소의 형식을 가져오거나 설정합니다. | 'ArchiveStore' 'SnapshotStore' 'VaultStore' |
형식 | 형식을 가져오거나 설정합니다. | 'GeoRedundant' 'LocallyRedundant' 'ZoneRedundant' |
빠른 시작 템플릿
다음 빠른 시작 템플릿은 이 리소스 유형을 배포합니다.
템플릿 | Description |
---|---|
디스크 만들기 & Backup 자격 증명 모음을 통해 보호 사용 |
디스크를 만들고 Backup Vault를 통해 보호를 사용하도록 설정하는 템플릿 |
스토리지 계정 만들기 & Backup Vault를 통해 보호 사용 |
스토리지 계정을 만들고 Backup Vault를 통해 보호를 사용하도록 설정하는 템플릿 |
Backup 자격 증명 모음 만들기 |
Backup 자격 증명 모음을 만드는 간단한 템플릿 |
ARM 템플릿 리소스 정의
backupVaults 리소스 종류는 다음으로 배포할 수 있습니다.
- 리소스 그룹 - 리소스 그룹 배포 명령 참조
각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.
리소스 형식
Microsoft.DataProtection/backupVaults 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.
{
"type": "Microsoft.DataProtection/backupVaults",
"apiVersion": "2022-11-01-preview",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"eTag": "string",
"identity": {
"type": "string"
},
"properties": {
"monitoringSettings": {
"azureMonitorAlertSettings": {
"alertsForAllJobFailures": "string"
}
},
"securitySettings": {
"immutabilitySettings": {
"state": "string"
},
"softDeleteSettings": {
"retentionDurationInDays": "int",
"state": "string"
}
},
"storageSettings": [
{
"datastoreType": "string",
"type": "string"
}
]
}
}
속성 값
backupVaults
Name | Description | 값 |
---|---|---|
형식 | 리소스 종류 | 'Microsoft.DataProtection/backupVaults' |
apiVersion | 리소스 api 버전 | '2022-11-01-preview' |
name | 리소스 이름 | string(필수) |
위치 | 리소스 위치. | 문자열 |
tags | 리소스 태그. | 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요. |
eTag | 선택적 ETag입니다. | 문자열 |
identity | 입력 관리 ID 세부 정보 | DppIdentityDetails |
properties | BackupVaultResource 속성 | BackupVault (필수) |
DppIdentityDetails
Name | Description | 값 |
---|---|---|
형식 | SystemAssigned 또는 None일 수 있는 identityType | 문자열 |
BackupVault
Name | Description | 값 |
---|---|---|
monitoringSettings | 모니터링 설정 | MonitoringSettings |
securitySettings | 보안 설정 | SecuritySettings |
storageSettings | 스토리지 설정 | StorageSetting[] (필수) |
MonitoringSettings
Name | Description | 값 |
---|---|---|
azureMonitorAlertSettings | Azure Monitor 기반 경고에 대한 설정 | AzureMonitorAlertSettings |
AzureMonitorAlertSettings
Name | Description | 값 |
---|---|---|
alertsForAllJobFailures | 'Disabled' 'Enabled' |
SecuritySettings
Name | Description | 값 |
---|---|---|
immutabilitySettings | 자격 증명 모음 수준의 불변성 설정 | 불변성설정 |
softDeleteSettings | 일시 삭제 관련 설정 | SoftDeleteSettings |
불변성설정
Name | Description | 값 |
---|---|---|
state | 불변성 상태 | 'Disabled' '잠김' '잠금 해제됨' |
SoftDeleteSettings
Name | Description | 값 |
---|---|---|
retentionDurationInDays | 일시 삭제 보존 기간 | int |
state | 일시 삭제 상태 | 'AlwaysOn' 'Off' 'On' |
StorageSetting
Name | Description | 값 |
---|---|---|
datastoreType | 데이터 저장소의 형식을 가져오거나 설정합니다. | 'ArchiveStore' 'SnapshotStore' 'VaultStore' |
형식 | 형식을 가져오거나 설정합니다. | 'GeoRedundant' 'LocallyRedundant' 'ZoneRedundant' |
빠른 시작 템플릿
다음 빠른 시작 템플릿은 이 리소스 종류를 배포합니다.
템플릿 | Description |
---|---|
디스크 만들기 & Backup 자격 증명 모음을 통한 보호 사용 |
디스크를 만들고 Backup 자격 증명 모음을 통해 보호를 사용하도록 설정하는 템플릿 |
스토리지 계정 만들기 & Backup 자격 증명 모음을 통한 보호 사용 |
백업 자격 증명 모음을 통해 스토리지 계정을 만들고 보호를 사용하도록 설정하는 템플릿 |
Backup 자격 증명 모음 만들기 |
Backup 자격 증명 모음을 만드는 간단한 템플릿 |
Terraform(AzAPI 공급자) 리소스 정의
backupVaults 리소스 종류는 다음을 위해 배포할 수 있습니다.
- 리소스 그룹
각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.
리소스 형식
Microsoft.DataProtection/backupVaults 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DataProtection/backupVaults@2022-11-01-preview"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
identity {
type = "string"
}
body = jsonencode({
properties = {
monitoringSettings = {
azureMonitorAlertSettings = {
alertsForAllJobFailures = "string"
}
}
securitySettings = {
immutabilitySettings = {
state = "string"
}
softDeleteSettings = {
retentionDurationInDays = int
state = "string"
}
}
storageSettings = [
{
datastoreType = "string"
type = "string"
}
]
}
eTag = "string"
})
}
속성 값
backupVaults
Name | Description | 값 |
---|---|---|
형식 | 리소스 종류 | "Microsoft.DataProtection/backupVaults@2022-11-01-preview" |
name | 리소스 이름 | string(필수) |
위치 | 리소스 위치. | string |
parent_id | 리소스 그룹에 배포하려면 해당 리소스 그룹의 ID를 사용합니다. | string(필수) |
tags | 리소스 태그. | 태그 이름 및 값의 사전입니다. |
eTag | 선택적 ETag입니다. | 문자열 |
identity | 입력 관리 ID 세부 정보 | DppIdentityDetails |
properties | BackupVaultResource 속성 | BackupVault (필수) |
DppIdentityDetails
Name | Description | 값 |
---|---|---|
형식 | SystemAssigned 또는 None일 수 있는 identityType | string |
BackupVault
Name | Description | 값 |
---|---|---|
monitoringSettings | 모니터링 설정 | MonitoringSettings |
securitySettings | 보안 설정 | SecuritySettings |
storageSettings | 스토리지 설정 | StorageSetting[] (필수) |
MonitoringSettings
Name | Description | 값 |
---|---|---|
azureMonitorAlertSettings | Azure Monitor 기반 경고에 대한 설정 | AzureMonitorAlertSettings |
AzureMonitorAlertSettings
Name | Description | 값 |
---|---|---|
alertsForAllJobFailures | "사용 안 함" "사용" |
SecuritySettings
Name | Description | 값 |
---|---|---|
불변성설정 | 자격 증명 모음 수준의 불변성 설정 | 불변성설정 |
softDeleteSettings | 일시 삭제 관련 설정 | SoftDeleteSettings |
불변성설정
Name | Description | 값 |
---|---|---|
state | 불변성 상태 | "사용 안 함" "잠김" "잠금 해제됨" |
SoftDeleteSettings
Name | Description | 값 |
---|---|---|
retentionDurationInDays | 일시 삭제 보존 기간 | int |
state | 일시 삭제 상태 | "AlwaysOn" "Off" "On" |
StorageSetting
Name | Description | 값 |
---|---|---|
datastoreType | 데이터 저장소의 형식을 가져오거나 설정합니다. | "ArchiveStore" "SnapshotStore" "VaultStore" |
형식 | 형식을 가져오거나 설정합니다. | "GeoRedundant" "LocallyRedundant" "ZoneRedundant" |