PrivateEndpointConnectionProxy

Private endpoint connection proxy details. API Version: 2020-03-01-preview.

Example Usage

PrivateEndpointConnectionProxyCreateOrUpdate

using System.Collections.Generic;
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",
});
});
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 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(Map.ofEntries(
Map.entry("id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}"),
Map.entry("immutableResourceId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}"),
Map.entry("immutableSubscriptionId", "00000000-0000-0000-0000-000000000000"),
Map.entry("location", "westus2"),
Map.entry("manualPrivateLinkServiceConnections", Map.ofEntries(
Map.entry("groupIds", "DeviceUpdate"),
Map.entry("name", "{privateEndpointConnectionProxyId}"),
Map.entry("requestMessage", "Please approve my connection, thanks.")
)),
Map.entry("privateLinkServiceProxies", Map.ofEntries(
Map.entry("groupConnectivityInformation", ),
Map.entry("id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}")
))
))
.resourceGroupName("test-rg")
.build());
}
}

Import

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

$ pulumi import azure-native:deviceupdate:PrivateEndpointConnectionProxy peexample01 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DeviceUpdate/accounts/contoso/privateEndpointConnectionProxies/peexample01

Properties

Link copied to clipboard
val eTag: Output<String>

ETag from NRP.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

The provisioning state of the private endpoint connection proxy resource.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Remote private endpoint details.

Link copied to clipboard
val status: Output<String>?

Operation status.

Link copied to clipboard

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>