Microsoft.DocumentDB databaseAccounts/privateEndpointConnections 2024-12-01-preview
Artículo 12/09/2024
1 colaborador
Comentarios
En este artículo
Bicep resource definition
The databaseAccounts/privateEndpointConnections resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log .
To create a Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections@2024-12-01-preview' = {
parent: resourceSymbolicName
name: 'string'
properties: {
groupId: 'string'
privateEndpoint: {
id: 'string'
}
privateLinkServiceConnectionState: {
description: 'string'
status: 'string'
}
provisioningState: 'string'
}
}
Property values
Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections
PrivateEndpointConnectionProperties
Name
Description
Value
groupId
Group id of the private endpoint.
string
privateEndpoint
Private endpoint which the connection belongs to.
PrivateEndpointProperty
privateLinkServiceConnectionState
Connection State of the Private Endpoint Connection.
PrivateLinkServiceConnectionStateProperty
provisioningState
Provisioning state of the private endpoint.
string
PrivateEndpointProperty
Name
Description
Value
id
Resource id of the private endpoint.
string
PrivateLinkServiceConnectionStateProperty
Name
Description
Value
description
The private link service connection description.
string
status
The private link service connection status.
string
ARM template resource definition
The databaseAccounts/privateEndpointConnections resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log .
To create a Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections resource, add the following JSON to your template.
{
"type": "Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections",
"apiVersion": "2024-12-01-preview",
"name": "string",
"properties": {
"groupId": "string",
"privateEndpoint": {
"id": "string"
},
"privateLinkServiceConnectionState": {
"description": "string",
"status": "string"
},
"provisioningState": "string"
}
}
Property values
Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections
Name
Description
Value
apiVersion
The api version
'2024-12-01-preview'
name
The resource name
string (required)
properties
Resource properties.
PrivateEndpointConnectionProperties
type
The resource type
'Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections'
PrivateEndpointConnectionProperties
Name
Description
Value
groupId
Group id of the private endpoint.
string
privateEndpoint
Private endpoint which the connection belongs to.
PrivateEndpointProperty
privateLinkServiceConnectionState
Connection State of the Private Endpoint Connection.
PrivateLinkServiceConnectionStateProperty
provisioningState
Provisioning state of the private endpoint.
string
PrivateEndpointProperty
Name
Description
Value
id
Resource id of the private endpoint.
string
PrivateLinkServiceConnectionStateProperty
Name
Description
Value
description
The private link service connection description.
string
status
The private link service connection status.
string
The databaseAccounts/privateEndpointConnections resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log .
To create a Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections@2024-12-01-preview"
name = "string"
body = jsonencode({
properties = {
groupId = "string"
privateEndpoint = {
id = "string"
}
privateLinkServiceConnectionState = {
description = "string"
status = "string"
}
provisioningState = "string"
}
})
}
Property values
Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections
Name
Description
Value
name
The resource name
string (required)
parent_id
The ID of the resource that is the parent for this resource.
ID for resource of type: databaseAccounts
properties
Resource properties.
PrivateEndpointConnectionProperties
type
The resource type
"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections@2024-12-01-preview"
PrivateEndpointConnectionProperties
Name
Description
Value
groupId
Group id of the private endpoint.
string
privateEndpoint
Private endpoint which the connection belongs to.
PrivateEndpointProperty
privateLinkServiceConnectionState
Connection State of the Private Endpoint Connection.
PrivateLinkServiceConnectionStateProperty
provisioningState
Provisioning state of the private endpoint.
string
PrivateEndpointProperty
Name
Description
Value
id
Resource id of the private endpoint.
string
PrivateLinkServiceConnectionStateProperty
Name
Description
Value
description
The private link service connection description.
string
status
The private link service connection status.
string