Microsoft.Storage storageAccounts/privateEndpointConnections 2022-05-01
Bicep 리소스 정의
storageAccounts/privateEndpointConnections 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.
- 리소스 그룹 - 리소스 그룹 배포 명령 참조
각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.
리소스 형식
Microsoft.Storage/storageAccounts/privateEndpointConnections 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.
resource symbolicname 'Microsoft.Storage/storageAccounts/privateEndpointConnections@2022-05-01' = {
name: 'string'
parent: resourceSymbolicName
properties: {
privateEndpoint: {}
privateLinkServiceConnectionState: {
actionRequired: 'string'
description: 'string'
status: 'string'
}
}
}
속성 값
storageAccounts/privateEndpointConnections
이름 | 묘사 | 값 |
---|---|---|
이름 | 리소스 이름 Bicep자식 리소스의 이름과 형식을 설정하는 방법을 알아보세요. |
string(필수) |
부모 | Bicep에서 자식 리소스에 대한 부모 리소스를 지정할 수 있습니다. 자식 리소스가 부모 리소스 외부에서 선언된 경우에만 이 속성을 추가해야 합니다. 자세한 내용은 부모 리소스외부의 자식 리소스 |
형식 리소스의 기호 이름: storageAccounts |
속성 | 리소스 속성입니다. | PrivateEndpointConnectionProperties |
PrivateEndpointConnectionProperties
이름 | 묘사 | 값 |
---|---|---|
privateEndpoint | 프라이빗 엔드포인트의 리소스입니다. | PrivateEndpoint |
privateLinkServiceConnectionState | 서비스 소비자와 공급자 간의 연결 상태에 대한 정보 컬렉션입니다. | PrivateLinkServiceConnectionState(필수) |
PrivateEndpoint
이 개체에는 배포 중에 설정할 속성이 없습니다. 모든 속성은 ReadOnly입니다.
PrivateLinkServiceConnectionState
이름 | 묘사 | 값 |
---|---|---|
actionRequired | 서비스 공급자의 변경 내용에 소비자에 대한 업데이트가 필요한지 여부를 나타내는 메시지입니다. | 문자열 |
묘사 | 연결의 승인/거부 이유입니다. | 문자열 |
상태 | 서비스 소유자가 연결을 승인/거부/제거했는지 여부를 나타냅니다. | '승인됨' '보류 중' '거부됨' |
ARM 템플릿 리소스 정의
storageAccounts/privateEndpointConnections 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.
- 리소스 그룹 - 리소스 그룹 배포 명령 참조
각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.
리소스 형식
Microsoft.Storage/storageAccounts/privateEndpointConnections 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.
{
"type": "Microsoft.Storage/storageAccounts/privateEndpointConnections",
"apiVersion": "2022-05-01",
"name": "string",
"properties": {
"privateEndpoint": {},
"privateLinkServiceConnectionState": {
"actionRequired": "string",
"description": "string",
"status": "string"
}
}
}
속성 값
storageAccounts/privateEndpointConnections
이름 | 묘사 | 값 |
---|---|---|
형 | 리소스 종류 | 'Microsoft.Storage/storageAccounts/privateEndpointConnections' |
apiVersion | 리소스 api 버전 | '2022-05-01' |
이름 | 리소스 이름 JSON ARM 템플릿 |
string(필수) |
속성 | 리소스 속성입니다. | PrivateEndpointConnectionProperties |
PrivateEndpointConnectionProperties
이름 | 묘사 | 값 |
---|---|---|
privateEndpoint | 프라이빗 엔드포인트의 리소스입니다. | PrivateEndpoint |
privateLinkServiceConnectionState | 서비스 소비자와 공급자 간의 연결 상태에 대한 정보 컬렉션입니다. | PrivateLinkServiceConnectionState(필수) |
PrivateEndpoint
이 개체에는 배포 중에 설정할 속성이 없습니다. 모든 속성은 ReadOnly입니다.
PrivateLinkServiceConnectionState
이름 | 묘사 | 값 |
---|---|---|
actionRequired | 서비스 공급자의 변경 내용에 소비자에 대한 업데이트가 필요한지 여부를 나타내는 메시지입니다. | 문자열 |
묘사 | 연결의 승인/거부 이유입니다. | 문자열 |
상태 | 서비스 소유자가 연결을 승인/거부/제거했는지 여부를 나타냅니다. | '승인됨' '보류 중' '거부됨' |
Terraform(AzAPI 공급자) 리소스 정의
storageAccounts/privateEndpointConnections 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.
- 리소스 그룹
각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.
리소스 형식
Microsoft.Storage/storageAccounts/privateEndpointConnections 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Storage/storageAccounts/privateEndpointConnections@2022-05-01"
name = "string"
parent_id = "string"
body = jsonencode({
properties = {
privateEndpoint = {}
privateLinkServiceConnectionState = {
actionRequired = "string"
description = "string"
status = "string"
}
}
})
}
속성 값
storageAccounts/privateEndpointConnections
이름 | 묘사 | 값 |
---|---|---|
형 | 리소스 종류 | "Microsoft.Storage/storageAccounts/privateEndpointConnections@2022-05-01" |
이름 | 리소스 이름 | string(필수) |
parent_id | 이 리소스의 부모인 리소스의 ID입니다. | 유형의 리소스에 대한 ID: storageAccounts |
속성 | 리소스 속성입니다. | PrivateEndpointConnectionProperties |
PrivateEndpointConnectionProperties
이름 | 묘사 | 값 |
---|---|---|
privateEndpoint | 프라이빗 엔드포인트의 리소스입니다. | PrivateEndpoint |
privateLinkServiceConnectionState | 서비스 소비자와 공급자 간의 연결 상태에 대한 정보 컬렉션입니다. | PrivateLinkServiceConnectionState(필수) |
PrivateEndpoint
이 개체에는 배포 중에 설정할 속성이 없습니다. 모든 속성은 ReadOnly입니다.
PrivateLinkServiceConnectionState
이름 | 묘사 | 값 |
---|---|---|
actionRequired | 서비스 공급자의 변경 내용에 소비자에 대한 업데이트가 필요한지 여부를 나타내는 메시지입니다. | 문자열 |
묘사 | 연결의 승인/거부 이유입니다. | 문자열 |
상태 | 서비스 소유자가 연결을 승인/거부/제거했는지 여부를 나타냅니다. | "승인됨" "보류 중" "거부됨" |