1. Packages
  2. Azure Native v2
  3. API Docs
  4. deviceupdate
  5. PrivateEndpointConnectionProxy
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.deviceupdate.PrivateEndpointConnectionProxy

Explore with Pulumi AI

Private endpoint connection proxy details. Azure REST API version: 2023-07-01. Prior API version in Azure Native 1.x: 2020-03-01-preview.

Example Usage

PrivateEndpointConnectionProxyCreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var privateEndpointConnectionProxy = new AzureNative.DeviceUpdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxy", new()
    {
        AccountName = "contoso",
        PrivateEndpointConnectionProxyId = "peexample01",
        RemotePrivateEndpoint = new AzureNative.DeviceUpdate.Inputs.RemotePrivateEndpointArgs
        {
            Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
            ImmutableResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
            ImmutableSubscriptionId = "00000000-0000-0000-0000-000000000000",
            Location = "westus2",
            ManualPrivateLinkServiceConnections = new[]
            {
                new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnectionArgs
                {
                    GroupIds = new[]
                    {
                        "DeviceUpdate",
                    },
                    Name = "{privateEndpointConnectionProxyId}",
                    RequestMessage = "Please approve my connection, thanks.",
                },
            },
            PrivateLinkServiceProxies = new[]
            {
                new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceProxyArgs
                {
                    GroupConnectivityInformation = new() { },
                    Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}",
                },
            },
        },
        ResourceGroupName = "test-rg",
    });

});
Copy
package main

import (
	deviceupdate "github.com/pulumi/pulumi-azure-native-sdk/deviceupdate/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := deviceupdate.NewPrivateEndpointConnectionProxy(ctx, "privateEndpointConnectionProxy", &deviceupdate.PrivateEndpointConnectionProxyArgs{
			AccountName:                      pulumi.String("contoso"),
			PrivateEndpointConnectionProxyId: pulumi.String("peexample01"),
			RemotePrivateEndpoint: &deviceupdate.RemotePrivateEndpointArgs{
				Id:                      pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}"),
				ImmutableResourceId:     pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}"),
				ImmutableSubscriptionId: pulumi.String("00000000-0000-0000-0000-000000000000"),
				Location:                pulumi.String("westus2"),
				ManualPrivateLinkServiceConnections: deviceupdate.PrivateLinkServiceConnectionArray{
					&deviceupdate.PrivateLinkServiceConnectionArgs{
						GroupIds: pulumi.StringArray{
							pulumi.String("DeviceUpdate"),
						},
						Name:           pulumi.String("{privateEndpointConnectionProxyId}"),
						RequestMessage: pulumi.String("Please approve my connection, thanks."),
					},
				},
				PrivateLinkServiceProxies: deviceupdate.PrivateLinkServiceProxyArray{
					&deviceupdate.PrivateLinkServiceProxyArgs{
						GroupConnectivityInformation: deviceupdate.GroupConnectivityInformationArray{},
						Id:                           pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}"),
					},
				},
			},
			ResourceGroupName: pulumi.String("test-rg"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.deviceupdate.PrivateEndpointConnectionProxy;
import com.pulumi.azurenative.deviceupdate.PrivateEndpointConnectionProxyArgs;
import com.pulumi.azurenative.deviceupdate.inputs.RemotePrivateEndpointArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var privateEndpointConnectionProxy = new PrivateEndpointConnectionProxy("privateEndpointConnectionProxy", PrivateEndpointConnectionProxyArgs.builder()
            .accountName("contoso")
            .privateEndpointConnectionProxyId("peexample01")
            .remotePrivateEndpoint(RemotePrivateEndpointArgs.builder()
                .id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}")
                .immutableResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}")
                .immutableSubscriptionId("00000000-0000-0000-0000-000000000000")
                .location("westus2")
                .manualPrivateLinkServiceConnections(PrivateLinkServiceConnectionArgs.builder()
                    .groupIds("DeviceUpdate")
                    .name("{privateEndpointConnectionProxyId}")
                    .requestMessage("Please approve my connection, thanks.")
                    .build())
                .privateLinkServiceProxies(PrivateLinkServiceProxyArgs.builder()
                    .groupConnectivityInformation()
                    .id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}")
                    .build())
                .build())
            .resourceGroupName("test-rg")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const privateEndpointConnectionProxy = new azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxy", {
    accountName: "contoso",
    privateEndpointConnectionProxyId: "peexample01",
    remotePrivateEndpoint: {
        id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
        immutableResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
        immutableSubscriptionId: "00000000-0000-0000-0000-000000000000",
        location: "westus2",
        manualPrivateLinkServiceConnections: [{
            groupIds: ["DeviceUpdate"],
            name: "{privateEndpointConnectionProxyId}",
            requestMessage: "Please approve my connection, thanks.",
        }],
        privateLinkServiceProxies: [{
            groupConnectivityInformation: [],
            id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}",
        }],
    },
    resourceGroupName: "test-rg",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

private_endpoint_connection_proxy = azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxy",
    account_name="contoso",
    private_endpoint_connection_proxy_id="peexample01",
    remote_private_endpoint={
        "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
        "immutable_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
        "immutable_subscription_id": "00000000-0000-0000-0000-000000000000",
        "location": "westus2",
        "manual_private_link_service_connections": [{
            "group_ids": ["DeviceUpdate"],
            "name": "{privateEndpointConnectionProxyId}",
            "request_message": "Please approve my connection, thanks.",
        }],
        "private_link_service_proxies": [{
            "group_connectivity_information": [],
            "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}",
        }],
    },
    resource_group_name="test-rg")
Copy
resources:
  privateEndpointConnectionProxy:
    type: azure-native:deviceupdate:PrivateEndpointConnectionProxy
    properties:
      accountName: contoso
      privateEndpointConnectionProxyId: peexample01
      remotePrivateEndpoint:
        id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}
        immutableResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}
        immutableSubscriptionId: 00000000-0000-0000-0000-000000000000
        location: westus2
        manualPrivateLinkServiceConnections:
          - groupIds:
              - DeviceUpdate
            name: '{privateEndpointConnectionProxyId}'
            requestMessage: Please approve my connection, thanks.
        privateLinkServiceProxies:
          - groupConnectivityInformation: []
            id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}
      resourceGroupName: test-rg
Copy

Create PrivateEndpointConnectionProxy Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new PrivateEndpointConnectionProxy(name: string, args: PrivateEndpointConnectionProxyArgs, opts?: CustomResourceOptions);
@overload
def PrivateEndpointConnectionProxy(resource_name: str,
                                   args: PrivateEndpointConnectionProxyArgs,
                                   opts: Optional[ResourceOptions] = None)

@overload
def PrivateEndpointConnectionProxy(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   account_name: Optional[str] = None,
                                   resource_group_name: Optional[str] = None,
                                   private_endpoint_connection_proxy_id: Optional[str] = None,
                                   remote_private_endpoint: Optional[RemotePrivateEndpointArgs] = None,
                                   status: Optional[str] = None)
func NewPrivateEndpointConnectionProxy(ctx *Context, name string, args PrivateEndpointConnectionProxyArgs, opts ...ResourceOption) (*PrivateEndpointConnectionProxy, error)
public PrivateEndpointConnectionProxy(string name, PrivateEndpointConnectionProxyArgs args, CustomResourceOptions? opts = null)
public PrivateEndpointConnectionProxy(String name, PrivateEndpointConnectionProxyArgs args)
public PrivateEndpointConnectionProxy(String name, PrivateEndpointConnectionProxyArgs args, CustomResourceOptions options)
type: azure-native:deviceupdate:PrivateEndpointConnectionProxy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PrivateEndpointConnectionProxyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PrivateEndpointConnectionProxyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PrivateEndpointConnectionProxyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PrivateEndpointConnectionProxyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PrivateEndpointConnectionProxyArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var privateEndpointConnectionProxyResource = new AzureNative.Deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource", new()
{
    AccountName = "string",
    ResourceGroupName = "string",
    PrivateEndpointConnectionProxyId = "string",
    RemotePrivateEndpoint = 
    {
        { "id", "string" },
        { "immutableResourceId", "string" },
        { "immutableSubscriptionId", "string" },
        { "location", "string" },
        { "manualPrivateLinkServiceConnections", new[]
        {
            
            {
                { "groupIds", new[]
                {
                    "string",
                } },
                { "name", "string" },
                { "requestMessage", "string" },
            },
        } },
        { "privateLinkServiceConnections", new[]
        {
            
            {
                { "groupIds", new[]
                {
                    "string",
                } },
                { "name", "string" },
                { "requestMessage", "string" },
            },
        } },
        { "privateLinkServiceProxies", new[]
        {
            
            {
                { "groupConnectivityInformation", new[]
                {
                    
                    {
                        { "customerVisibleFqdns", new[]
                        {
                            "string",
                        } },
                        { "privateLinkServiceArmRegion", "string" },
                        { "redirectMapId", "string" },
                    },
                } },
                { "id", "string" },
                { "remotePrivateLinkServiceConnectionState", 
                {
                    { "actionsRequired", "string" },
                    { "description", "string" },
                    { "status", "string" },
                } },
            },
        } },
        { "vnetTrafficTag", "string" },
    },
    Status = "string",
});
Copy
example, err := deviceupdate.NewPrivateEndpointConnectionProxy(ctx, "privateEndpointConnectionProxyResource", &deviceupdate.PrivateEndpointConnectionProxyArgs{
	AccountName:                      "string",
	ResourceGroupName:                "string",
	PrivateEndpointConnectionProxyId: "string",
	RemotePrivateEndpoint: map[string]interface{}{
		"id":                      "string",
		"immutableResourceId":     "string",
		"immutableSubscriptionId": "string",
		"location":                "string",
		"manualPrivateLinkServiceConnections": []map[string]interface{}{
			map[string]interface{}{
				"groupIds": []string{
					"string",
				},
				"name":           "string",
				"requestMessage": "string",
			},
		},
		"privateLinkServiceConnections": []map[string]interface{}{
			map[string]interface{}{
				"groupIds": []string{
					"string",
				},
				"name":           "string",
				"requestMessage": "string",
			},
		},
		"privateLinkServiceProxies": []map[string]interface{}{
			map[string]interface{}{
				"groupConnectivityInformation": []map[string]interface{}{
					map[string]interface{}{
						"customerVisibleFqdns": []string{
							"string",
						},
						"privateLinkServiceArmRegion": "string",
						"redirectMapId":               "string",
					},
				},
				"id": "string",
				"remotePrivateLinkServiceConnectionState": map[string]interface{}{
					"actionsRequired": "string",
					"description":     "string",
					"status":          "string",
				},
			},
		},
		"vnetTrafficTag": "string",
	},
	Status: "string",
})
Copy
var privateEndpointConnectionProxyResource = new PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource", PrivateEndpointConnectionProxyArgs.builder()
    .accountName("string")
    .resourceGroupName("string")
    .privateEndpointConnectionProxyId("string")
    .remotePrivateEndpoint(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .status("string")
    .build());
Copy
private_endpoint_connection_proxy_resource = azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource",
    account_name=string,
    resource_group_name=string,
    private_endpoint_connection_proxy_id=string,
    remote_private_endpoint={
        id: string,
        immutableResourceId: string,
        immutableSubscriptionId: string,
        location: string,
        manualPrivateLinkServiceConnections: [{
            groupIds: [string],
            name: string,
            requestMessage: string,
        }],
        privateLinkServiceConnections: [{
            groupIds: [string],
            name: string,
            requestMessage: string,
        }],
        privateLinkServiceProxies: [{
            groupConnectivityInformation: [{
                customerVisibleFqdns: [string],
                privateLinkServiceArmRegion: string,
                redirectMapId: string,
            }],
            id: string,
            remotePrivateLinkServiceConnectionState: {
                actionsRequired: string,
                description: string,
                status: string,
            },
        }],
        vnetTrafficTag: string,
    },
    status=string)
Copy
const privateEndpointConnectionProxyResource = new azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource", {
    accountName: "string",
    resourceGroupName: "string",
    privateEndpointConnectionProxyId: "string",
    remotePrivateEndpoint: {
        id: "string",
        immutableResourceId: "string",
        immutableSubscriptionId: "string",
        location: "string",
        manualPrivateLinkServiceConnections: [{
            groupIds: ["string"],
            name: "string",
            requestMessage: "string",
        }],
        privateLinkServiceConnections: [{
            groupIds: ["string"],
            name: "string",
            requestMessage: "string",
        }],
        privateLinkServiceProxies: [{
            groupConnectivityInformation: [{
                customerVisibleFqdns: ["string"],
                privateLinkServiceArmRegion: "string",
                redirectMapId: "string",
            }],
            id: "string",
            remotePrivateLinkServiceConnectionState: {
                actionsRequired: "string",
                description: "string",
                status: "string",
            },
        }],
        vnetTrafficTag: "string",
    },
    status: "string",
});
Copy
type: azure-native:deviceupdate:PrivateEndpointConnectionProxy
properties:
    accountName: string
    privateEndpointConnectionProxyId: string
    remotePrivateEndpoint:
        id: string
        immutableResourceId: string
        immutableSubscriptionId: string
        location: string
        manualPrivateLinkServiceConnections:
            - groupIds:
                - string
              name: string
              requestMessage: string
        privateLinkServiceConnections:
            - groupIds:
                - string
              name: string
              requestMessage: string
        privateLinkServiceProxies:
            - groupConnectivityInformation:
                - customerVisibleFqdns:
                    - string
                  privateLinkServiceArmRegion: string
                  redirectMapId: string
              id: string
              remotePrivateLinkServiceConnectionState:
                actionsRequired: string
                description: string
                status: string
        vnetTrafficTag: string
    resourceGroupName: string
    status: string
Copy

PrivateEndpointConnectionProxy Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The PrivateEndpointConnectionProxy resource accepts the following input properties:

AccountName
This property is required.
Changes to this property will trigger replacement.
string
Account name.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
PrivateEndpointConnectionProxyId Changes to this property will trigger replacement. string
The ID of the private endpoint connection proxy object.
RemotePrivateEndpoint Pulumi.AzureNative.DeviceUpdate.Inputs.RemotePrivateEndpoint
Remote private endpoint details.
Status string
Operation status.
AccountName
This property is required.
Changes to this property will trigger replacement.
string
Account name.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
PrivateEndpointConnectionProxyId Changes to this property will trigger replacement. string
The ID of the private endpoint connection proxy object.
RemotePrivateEndpoint RemotePrivateEndpointArgs
Remote private endpoint details.
Status string
Operation status.
accountName
This property is required.
Changes to this property will trigger replacement.
String
Account name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
privateEndpointConnectionProxyId Changes to this property will trigger replacement. String
The ID of the private endpoint connection proxy object.
remotePrivateEndpoint RemotePrivateEndpoint
Remote private endpoint details.
status String
Operation status.
accountName
This property is required.
Changes to this property will trigger replacement.
string
Account name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
privateEndpointConnectionProxyId Changes to this property will trigger replacement. string
The ID of the private endpoint connection proxy object.
remotePrivateEndpoint RemotePrivateEndpoint
Remote private endpoint details.
status string
Operation status.
account_name
This property is required.
Changes to this property will trigger replacement.
str
Account name.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
private_endpoint_connection_proxy_id Changes to this property will trigger replacement. str
The ID of the private endpoint connection proxy object.
remote_private_endpoint RemotePrivateEndpointArgs
Remote private endpoint details.
status str
Operation status.
accountName
This property is required.
Changes to this property will trigger replacement.
String
Account name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
privateEndpointConnectionProxyId Changes to this property will trigger replacement. String
The ID of the private endpoint connection proxy object.
remotePrivateEndpoint Property Map
Remote private endpoint details.
status String
Operation status.

Outputs

All input properties are implicitly available as output properties. Additionally, the PrivateEndpointConnectionProxy resource produces the following output properties:

ETag string
ETag from NRP.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the private endpoint connection proxy resource.
SystemData Pulumi.AzureNative.DeviceUpdate.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
ETag string
ETag from NRP.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the private endpoint connection proxy resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
eTag String
ETag from NRP.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the private endpoint connection proxy resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
eTag string
ETag from NRP.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
The provisioning state of the private endpoint connection proxy resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
e_tag str
ETag from NRP.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
The provisioning state of the private endpoint connection proxy resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
eTag String
ETag from NRP.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The provisioning state of the private endpoint connection proxy resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ConnectionDetailsResponse
, ConnectionDetailsResponseArgs

GroupId This property is required. string
Group ID.
Id This property is required. string
Connection details ID.
LinkIdentifier This property is required. string
Link ID.
MemberName This property is required. string
Member name.
PrivateIpAddress This property is required. string
Private IP address.
GroupId This property is required. string
Group ID.
Id This property is required. string
Connection details ID.
LinkIdentifier This property is required. string
Link ID.
MemberName This property is required. string
Member name.
PrivateIpAddress This property is required. string
Private IP address.
groupId This property is required. String
Group ID.
id This property is required. String
Connection details ID.
linkIdentifier This property is required. String
Link ID.
memberName This property is required. String
Member name.
privateIpAddress This property is required. String
Private IP address.
groupId This property is required. string
Group ID.
id This property is required. string
Connection details ID.
linkIdentifier This property is required. string
Link ID.
memberName This property is required. string
Member name.
privateIpAddress This property is required. string
Private IP address.
group_id This property is required. str
Group ID.
id This property is required. str
Connection details ID.
link_identifier This property is required. str
Link ID.
member_name This property is required. str
Member name.
private_ip_address This property is required. str
Private IP address.
groupId This property is required. String
Group ID.
id This property is required. String
Connection details ID.
linkIdentifier This property is required. String
Link ID.
memberName This property is required. String
Member name.
privateIpAddress This property is required. String
Private IP address.

GroupConnectivityInformation
, GroupConnectivityInformationArgs

CustomerVisibleFqdns List<string>
List of customer visible FQDNs.
PrivateLinkServiceArmRegion string
PrivateLinkService ARM region.
RedirectMapId string
Redirect map ID.
CustomerVisibleFqdns []string
List of customer visible FQDNs.
PrivateLinkServiceArmRegion string
PrivateLinkService ARM region.
RedirectMapId string
Redirect map ID.
customerVisibleFqdns List<String>
List of customer visible FQDNs.
privateLinkServiceArmRegion String
PrivateLinkService ARM region.
redirectMapId String
Redirect map ID.
customerVisibleFqdns string[]
List of customer visible FQDNs.
privateLinkServiceArmRegion string
PrivateLinkService ARM region.
redirectMapId string
Redirect map ID.
customer_visible_fqdns Sequence[str]
List of customer visible FQDNs.
private_link_service_arm_region str
PrivateLinkService ARM region.
redirect_map_id str
Redirect map ID.
customerVisibleFqdns List<String>
List of customer visible FQDNs.
privateLinkServiceArmRegion String
PrivateLinkService ARM region.
redirectMapId String
Redirect map ID.

GroupConnectivityInformationResponse
, GroupConnectivityInformationResponseArgs

GroupId This property is required. string
Group ID.
InternalFqdn This property is required. string
Internal FQDN.
MemberName This property is required. string
Member name.
CustomerVisibleFqdns List<string>
List of customer visible FQDNs.
PrivateLinkServiceArmRegion string
PrivateLinkService ARM region.
RedirectMapId string
Redirect map ID.
GroupId This property is required. string
Group ID.
InternalFqdn This property is required. string
Internal FQDN.
MemberName This property is required. string
Member name.
CustomerVisibleFqdns []string
List of customer visible FQDNs.
PrivateLinkServiceArmRegion string
PrivateLinkService ARM region.
RedirectMapId string
Redirect map ID.
groupId This property is required. String
Group ID.
internalFqdn This property is required. String
Internal FQDN.
memberName This property is required. String
Member name.
customerVisibleFqdns List<String>
List of customer visible FQDNs.
privateLinkServiceArmRegion String
PrivateLinkService ARM region.
redirectMapId String
Redirect map ID.
groupId This property is required. string
Group ID.
internalFqdn This property is required. string
Internal FQDN.
memberName This property is required. string
Member name.
customerVisibleFqdns string[]
List of customer visible FQDNs.
privateLinkServiceArmRegion string
PrivateLinkService ARM region.
redirectMapId string
Redirect map ID.
group_id This property is required. str
Group ID.
internal_fqdn This property is required. str
Internal FQDN.
member_name This property is required. str
Member name.
customer_visible_fqdns Sequence[str]
List of customer visible FQDNs.
private_link_service_arm_region str
PrivateLinkService ARM region.
redirect_map_id str
Redirect map ID.
groupId This property is required. String
Group ID.
internalFqdn This property is required. String
Internal FQDN.
memberName This property is required. String
Member name.
customerVisibleFqdns List<String>
List of customer visible FQDNs.
privateLinkServiceArmRegion String
PrivateLinkService ARM region.
redirectMapId String
Redirect map ID.

PrivateEndpointServiceConnectionStatus
, PrivateEndpointServiceConnectionStatusArgs

Pending
Pending
Approved
Approved
Rejected
Rejected
PrivateEndpointServiceConnectionStatusPending
Pending
PrivateEndpointServiceConnectionStatusApproved
Approved
PrivateEndpointServiceConnectionStatusRejected
Rejected
Pending
Pending
Approved
Approved
Rejected
Rejected
Pending
Pending
Approved
Approved
Rejected
Rejected
PENDING
Pending
APPROVED
Approved
REJECTED
Rejected
"Pending"
Pending
"Approved"
Approved
"Rejected"
Rejected

PrivateLinkServiceConnection
, PrivateLinkServiceConnectionArgs

GroupIds List<string>
List of group IDs.
Name string
Private link service connection name.
RequestMessage string
Request message.
GroupIds []string
List of group IDs.
Name string
Private link service connection name.
RequestMessage string
Request message.
groupIds List<String>
List of group IDs.
name String
Private link service connection name.
requestMessage String
Request message.
groupIds string[]
List of group IDs.
name string
Private link service connection name.
requestMessage string
Request message.
group_ids Sequence[str]
List of group IDs.
name str
Private link service connection name.
request_message str
Request message.
groupIds List<String>
List of group IDs.
name String
Private link service connection name.
requestMessage String
Request message.

PrivateLinkServiceConnectionResponse
, PrivateLinkServiceConnectionResponseArgs

GroupIds List<string>
List of group IDs.
Name string
Private link service connection name.
RequestMessage string
Request message.
GroupIds []string
List of group IDs.
Name string
Private link service connection name.
RequestMessage string
Request message.
groupIds List<String>
List of group IDs.
name String
Private link service connection name.
requestMessage String
Request message.
groupIds string[]
List of group IDs.
name string
Private link service connection name.
requestMessage string
Request message.
group_ids Sequence[str]
List of group IDs.
name str
Private link service connection name.
request_message str
Request message.
groupIds List<String>
List of group IDs.
name String
Private link service connection name.
requestMessage String
Request message.

PrivateLinkServiceConnectionState
, PrivateLinkServiceConnectionStateArgs

ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string | Pulumi.AzureNative.DeviceUpdate.PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval/rejection of the connection.
status string | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actions_required str
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval/rejection of the connection.
status str | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String | "Pending" | "Approved" | "Rejected"
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval/rejection of the connection.
status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actions_required str
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval/rejection of the connection.
status str
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

PrivateLinkServiceProxy
, PrivateLinkServiceProxyArgs

GroupConnectivityInformation []GroupConnectivityInformation
Group connectivity information.
Id string
NRP resource ID.
RemotePrivateLinkServiceConnectionState PrivateLinkServiceConnectionState
Remote private link service connection state
groupConnectivityInformation List<GroupConnectivityInformation>
Group connectivity information.
id String
NRP resource ID.
remotePrivateLinkServiceConnectionState PrivateLinkServiceConnectionState
Remote private link service connection state
groupConnectivityInformation GroupConnectivityInformation[]
Group connectivity information.
id string
NRP resource ID.
remotePrivateLinkServiceConnectionState PrivateLinkServiceConnectionState
Remote private link service connection state
groupConnectivityInformation List<Property Map>
Group connectivity information.
id String
NRP resource ID.
remotePrivateLinkServiceConnectionState Property Map
Remote private link service connection state

PrivateLinkServiceProxyResponse
, PrivateLinkServiceProxyResponseArgs

groupConnectivityInformation List<Property Map>
Group connectivity information.
id String
NRP resource ID.
remotePrivateEndpointConnection Property Map
Remote private endpoint connection details.
remotePrivateLinkServiceConnectionState Property Map
Remote private link service connection state

PrivateLinkServiceProxyResponseRemotePrivateEndpointConnection
, PrivateLinkServiceProxyResponseRemotePrivateEndpointConnectionArgs

Id This property is required. string
Remote private endpoint connection ID.
Id This property is required. string
Remote private endpoint connection ID.
id This property is required. String
Remote private endpoint connection ID.
id This property is required. string
Remote private endpoint connection ID.
id This property is required. str
Remote private endpoint connection ID.
id This property is required. String
Remote private endpoint connection ID.

RemotePrivateEndpoint
, RemotePrivateEndpointArgs

Id string
Remote endpoint resource ID.
ImmutableResourceId string
Original resource ID needed by Microsoft.Network.
ImmutableSubscriptionId string
Original subscription ID needed by Microsoft.Network.
Location string
ARM location of the remote private endpoint.
ManualPrivateLinkServiceConnections List<Pulumi.AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnection>
List of private link service connections that need manual approval.
PrivateLinkServiceConnections List<Pulumi.AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnection>
List of automatically approved private link service connections.
PrivateLinkServiceProxies List<Pulumi.AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceProxy>
List of private link service proxies.
VnetTrafficTag string
Virtual network traffic tag.
Id string
Remote endpoint resource ID.
ImmutableResourceId string
Original resource ID needed by Microsoft.Network.
ImmutableSubscriptionId string
Original subscription ID needed by Microsoft.Network.
Location string
ARM location of the remote private endpoint.
ManualPrivateLinkServiceConnections []PrivateLinkServiceConnection
List of private link service connections that need manual approval.
PrivateLinkServiceConnections []PrivateLinkServiceConnection
List of automatically approved private link service connections.
PrivateLinkServiceProxies []PrivateLinkServiceProxy
List of private link service proxies.
VnetTrafficTag string
Virtual network traffic tag.
id String
Remote endpoint resource ID.
immutableResourceId String
Original resource ID needed by Microsoft.Network.
immutableSubscriptionId String
Original subscription ID needed by Microsoft.Network.
location String
ARM location of the remote private endpoint.
manualPrivateLinkServiceConnections List<PrivateLinkServiceConnection>
List of private link service connections that need manual approval.
privateLinkServiceConnections List<PrivateLinkServiceConnection>
List of automatically approved private link service connections.
privateLinkServiceProxies List<PrivateLinkServiceProxy>
List of private link service proxies.
vnetTrafficTag String
Virtual network traffic tag.
id string
Remote endpoint resource ID.
immutableResourceId string
Original resource ID needed by Microsoft.Network.
immutableSubscriptionId string
Original subscription ID needed by Microsoft.Network.
location string
ARM location of the remote private endpoint.
manualPrivateLinkServiceConnections PrivateLinkServiceConnection[]
List of private link service connections that need manual approval.
privateLinkServiceConnections PrivateLinkServiceConnection[]
List of automatically approved private link service connections.
privateLinkServiceProxies PrivateLinkServiceProxy[]
List of private link service proxies.
vnetTrafficTag string
Virtual network traffic tag.
id str
Remote endpoint resource ID.
immutable_resource_id str
Original resource ID needed by Microsoft.Network.
immutable_subscription_id str
Original subscription ID needed by Microsoft.Network.
location str
ARM location of the remote private endpoint.
manual_private_link_service_connections Sequence[PrivateLinkServiceConnection]
List of private link service connections that need manual approval.
private_link_service_connections Sequence[PrivateLinkServiceConnection]
List of automatically approved private link service connections.
private_link_service_proxies Sequence[PrivateLinkServiceProxy]
List of private link service proxies.
vnet_traffic_tag str
Virtual network traffic tag.
id String
Remote endpoint resource ID.
immutableResourceId String
Original resource ID needed by Microsoft.Network.
immutableSubscriptionId String
Original subscription ID needed by Microsoft.Network.
location String
ARM location of the remote private endpoint.
manualPrivateLinkServiceConnections List<Property Map>
List of private link service connections that need manual approval.
privateLinkServiceConnections List<Property Map>
List of automatically approved private link service connections.
privateLinkServiceProxies List<Property Map>
List of private link service proxies.
vnetTrafficTag String
Virtual network traffic tag.

RemotePrivateEndpointResponse
, RemotePrivateEndpointResponseArgs

ConnectionDetails List<Pulumi.AzureNative.DeviceUpdate.Inputs.ConnectionDetailsResponse>
List of connection details.
Id string
Remote endpoint resource ID.
ImmutableResourceId string
Original resource ID needed by Microsoft.Network.
ImmutableSubscriptionId string
Original subscription ID needed by Microsoft.Network.
Location string
ARM location of the remote private endpoint.
ManualPrivateLinkServiceConnections List<Pulumi.AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnectionResponse>
List of private link service connections that need manual approval.
PrivateLinkServiceConnections List<Pulumi.AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnectionResponse>
List of automatically approved private link service connections.
PrivateLinkServiceProxies List<Pulumi.AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceProxyResponse>
List of private link service proxies.
VnetTrafficTag string
Virtual network traffic tag.
ConnectionDetails []ConnectionDetailsResponse
List of connection details.
Id string
Remote endpoint resource ID.
ImmutableResourceId string
Original resource ID needed by Microsoft.Network.
ImmutableSubscriptionId string
Original subscription ID needed by Microsoft.Network.
Location string
ARM location of the remote private endpoint.
ManualPrivateLinkServiceConnections []PrivateLinkServiceConnectionResponse
List of private link service connections that need manual approval.
PrivateLinkServiceConnections []PrivateLinkServiceConnectionResponse
List of automatically approved private link service connections.
PrivateLinkServiceProxies []PrivateLinkServiceProxyResponse
List of private link service proxies.
VnetTrafficTag string
Virtual network traffic tag.
connectionDetails List<ConnectionDetailsResponse>
List of connection details.
id String
Remote endpoint resource ID.
immutableResourceId String
Original resource ID needed by Microsoft.Network.
immutableSubscriptionId String
Original subscription ID needed by Microsoft.Network.
location String
ARM location of the remote private endpoint.
manualPrivateLinkServiceConnections List<PrivateLinkServiceConnectionResponse>
List of private link service connections that need manual approval.
privateLinkServiceConnections List<PrivateLinkServiceConnectionResponse>
List of automatically approved private link service connections.
privateLinkServiceProxies List<PrivateLinkServiceProxyResponse>
List of private link service proxies.
vnetTrafficTag String
Virtual network traffic tag.
connectionDetails ConnectionDetailsResponse[]
List of connection details.
id string
Remote endpoint resource ID.
immutableResourceId string
Original resource ID needed by Microsoft.Network.
immutableSubscriptionId string
Original subscription ID needed by Microsoft.Network.
location string
ARM location of the remote private endpoint.
manualPrivateLinkServiceConnections PrivateLinkServiceConnectionResponse[]
List of private link service connections that need manual approval.
privateLinkServiceConnections PrivateLinkServiceConnectionResponse[]
List of automatically approved private link service connections.
privateLinkServiceProxies PrivateLinkServiceProxyResponse[]
List of private link service proxies.
vnetTrafficTag string
Virtual network traffic tag.
connection_details Sequence[ConnectionDetailsResponse]
List of connection details.
id str
Remote endpoint resource ID.
immutable_resource_id str
Original resource ID needed by Microsoft.Network.
immutable_subscription_id str
Original subscription ID needed by Microsoft.Network.
location str
ARM location of the remote private endpoint.
manual_private_link_service_connections Sequence[PrivateLinkServiceConnectionResponse]
List of private link service connections that need manual approval.
private_link_service_connections Sequence[PrivateLinkServiceConnectionResponse]
List of automatically approved private link service connections.
private_link_service_proxies Sequence[PrivateLinkServiceProxyResponse]
List of private link service proxies.
vnet_traffic_tag str
Virtual network traffic tag.
connectionDetails List<Property Map>
List of connection details.
id String
Remote endpoint resource ID.
immutableResourceId String
Original resource ID needed by Microsoft.Network.
immutableSubscriptionId String
Original subscription ID needed by Microsoft.Network.
location String
ARM location of the remote private endpoint.
manualPrivateLinkServiceConnections List<Property Map>
List of private link service connections that need manual approval.
privateLinkServiceConnections List<Property Map>
List of automatically approved private link service connections.
privateLinkServiceProxies List<Property Map>
List of private link service proxies.
vnetTrafficTag String
Virtual network traffic tag.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:deviceupdate:PrivateEndpointConnectionProxy peexample01 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeviceUpdate/accounts/{accountName}/privateEndpointConnectionProxies/{privateEndpointConnectionProxyId} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0