Microsoft.DataReplication replicationVaults/privateEndpointConnections

Bicep resource definition

The replicationVaults/privateEndpointConnections resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.DataReplication/replicationVaults/privateEndpointConnections resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.DataReplication/replicationVaults/privateEndpointConnections@2026-05-01' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    privateEndpoint: {
      id: 'string'
    }
    privateLinkServiceConnectionState: {
      actionsRequired: 'string'
      description: 'string'
      status: 'string'
    }
  }
}

Property Values

Microsoft.DataReplication/replicationVaults/privateEndpointConnections

Name Description Value
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9]*$ (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: replicationVaults
properties The resource-specific properties for this resource. PrivateEndpointConnectionResponseProperties

PrivateEndpoint

Name Description Value
id Gets or sets the id. string

PrivateEndpointConnectionResponseProperties

Name Description Value
privateEndpoint Represent private Endpoint network resource that is linked to the Private Endpoint connection. PrivateEndpoint
privateLinkServiceConnectionState Represents Private link service connection state. PrivateLinkServiceConnectionState

PrivateLinkServiceConnectionState

Name Description Value
actionsRequired Gets or sets actions required. string
description Gets or sets description. string
status Gets or sets the status. 'Approved'
'Disconnected'
'Pending'
'Rejected'

ARM template resource definition

The replicationVaults/privateEndpointConnections resource type can be deployed with operations that target:

Usage Examples

Resource format

To create a Microsoft.DataReplication/replicationVaults/privateEndpointConnections resource, add the following JSON to your template.

{
  "type": "Microsoft.DataReplication/replicationVaults/privateEndpointConnections",
  "apiVersion": "2026-05-01",
  "name": "string",
  "properties": {
    "privateEndpoint": {
      "id": "string"
    },
    "privateLinkServiceConnectionState": {
      "actionsRequired": "string",
      "description": "string",
      "status": "string"
    }
  }
}

Property Values

Microsoft.DataReplication/replicationVaults/privateEndpointConnections

Name Description Value
apiVersion The api version '2026-05-01'
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9]*$ (required)
properties The resource-specific properties for this resource. PrivateEndpointConnectionResponseProperties
type The resource type 'Microsoft.DataReplication/replicationVaults/privateEndpointConnections'

PrivateEndpoint

Name Description Value
id Gets or sets the id. string

PrivateEndpointConnectionResponseProperties

Name Description Value
privateEndpoint Represent private Endpoint network resource that is linked to the Private Endpoint connection. PrivateEndpoint
privateLinkServiceConnectionState Represents Private link service connection state. PrivateLinkServiceConnectionState

PrivateLinkServiceConnectionState

Name Description Value
actionsRequired Gets or sets actions required. string
description Gets or sets description. string
status Gets or sets the status. 'Approved'
'Disconnected'
'Pending'
'Rejected'

Terraform (AzAPI provider) resource definition

The replicationVaults/privateEndpointConnections resource type can be deployed with operations that target:

  • Resource groups For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.DataReplication/replicationVaults/privateEndpointConnections resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DataReplication/replicationVaults/privateEndpointConnections@2026-05-01"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      privateEndpoint = {
        id = "string"
      }
      privateLinkServiceConnectionState = {
        actionsRequired = "string"
        description = "string"
        status = "string"
      }
    }
  }
}

Property Values

Microsoft.DataReplication/replicationVaults/privateEndpointConnections

Name Description Value
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9]*$ (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: replicationVaults
properties The resource-specific properties for this resource. PrivateEndpointConnectionResponseProperties
type The resource type "Microsoft.DataReplication/replicationVaults/privateEndpointConnections@2026-05-01"

PrivateEndpoint

Name Description Value
id Gets or sets the id. string

PrivateEndpointConnectionResponseProperties

Name Description Value
privateEndpoint Represent private Endpoint network resource that is linked to the Private Endpoint connection. PrivateEndpoint
privateLinkServiceConnectionState Represents Private link service connection state. PrivateLinkServiceConnectionState

PrivateLinkServiceConnectionState

Name Description Value
actionsRequired Gets or sets actions required. string
description Gets or sets description. string
status Gets or sets the status. 'Approved'
'Disconnected'
'Pending'
'Rejected'