Microsoft.Network securityPartnerProviders 2023-11-01
Bicep 리소스 정의
securityPartnerProviders 리소스 종류는 다음을 대상으로 하는 작업을 사용하여 배포할 수 있습니다.
- 리소스 그룹 - 리소스 그룹 배포 명령을 참조하세요.
각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.
리소스 형식
Microsoft.Network/securityPartnerProviders 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.
resource symbolicname 'Microsoft.Network/securityPartnerProviders@2023-11-01' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
properties: {
securityProviderName: 'string'
virtualHub: {
id: 'string'
}
}
}
속성 값
securityPartnerProviders
Name | Description | 값 |
---|---|---|
name | 리소스 이름 | string(필수) |
위치 | 리소스 위치. | 문자열 |
tags | 리소스 태그. | 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요. |
properties | 보안 파트너 공급자의 속성입니다. | SecurityPartnerProviderPropertiesFormat |
SecurityPartnerProviderPropertiesFormat
Name | Description | 값 |
---|---|---|
securityProviderName | 보안 공급자 이름입니다. | '검사점' 'IBoss' 'ZScaler' |
virtualHub | 보안 파트너 공급자가 속한 virtualHub입니다. | SubResource |
SubResource
Name | Description | 값 |
---|---|---|
id | 리소스 ID입니다. | string |
ARM 템플릿 리소스 정의
securityPartnerProviders 리소스 종류는 다음을 대상으로 하는 작업을 사용하여 배포할 수 있습니다.
- 리소스 그룹 - 리소스 그룹 배포 명령을 참조하세요.
각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.
리소스 형식
Microsoft.Network/securityPartnerProviders 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.
{
"type": "Microsoft.Network/securityPartnerProviders",
"apiVersion": "2023-11-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"securityProviderName": "string",
"virtualHub": {
"id": "string"
}
}
}
속성 값
securityPartnerProviders
Name | Description | 값 |
---|---|---|
형식 | 리소스 종류 | 'Microsoft.Network/securityPartnerProviders' |
apiVersion | 리소스 api 버전 | '2023-11-01' |
name | 리소스 이름 | string(필수) |
위치 | 리소스 위치. | 문자열 |
tags | 리소스 태그. | 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요. |
properties | 보안 파트너 공급자의 속성입니다. | SecurityPartnerProviderPropertiesFormat |
SecurityPartnerProviderPropertiesFormat
Name | Description | 값 |
---|---|---|
securityProviderName | 보안 공급자 이름입니다. | '검사점' 'IBoss' 'ZScaler' |
virtualHub | 보안 파트너 공급자가 속한 virtualHub입니다. | SubResource |
SubResource
Name | Description | 값 |
---|---|---|
id | 리소스 ID입니다. | string |
Terraform(AzAPI 공급자) 리소스 정의
securityPartnerProviders 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.
- 리소스 그룹
각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.
리소스 형식
Microsoft.Network/securityPartnerProviders 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/securityPartnerProviders@2023-11-01"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
securityProviderName = "string"
virtualHub = {
id = "string"
}
}
})
}
속성 값
securityPartnerProviders
Name | Description | 값 |
---|---|---|
형식 | 리소스 종류 | "Microsoft.Network/securityPartnerProviders@2023-11-01" |
name | 리소스 이름 | string(필수) |
위치 | 리소스 위치. | string |
parent_id | 리소스 그룹에 배포하려면 해당 리소스 그룹의 ID를 사용합니다. | string(필수) |
tags | 리소스 태그. | 태그 이름 및 값의 사전입니다. |
properties | 보안 파트너 공급자의 속성입니다. | SecurityPartnerProviderPropertiesFormat |
SecurityPartnerProviderPropertiesFormat
Name | Description | 값 |
---|---|---|
securityProviderName | 보안 공급자 이름입니다. | "검사점" "IBoss" "ZScaler" |
virtualHub | 보안 파트너 공급자가 속한 virtualHub입니다. | SubResource |
SubResource
Name | Description | 값 |
---|---|---|
id | 리소스 ID입니다. | string |