1. Packages
  2. Azure Native v2
  3. API Docs
  4. migrate
  5. PrivateEndpointConnectionControllerPrivateEndpointConnection
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.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection

Explore with Pulumi AI

REST model used to encapsulate the user visible state of a PrivateEndpoint. Azure REST API version: 2020-05-01.

Other available API versions: 2023-01-01.

Example Usage

PrivateEndpointConnection_Put

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

return await Deployment.RunAsync(() => 
{
    var privateEndpointConnectionControllerPrivateEndpointConnection = new AzureNative.Migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnection", new()
    {
        MigrateProjectName = "proj567",
        PeConnectionName = "proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6",
        Properties = new AzureNative.Migrate.Inputs.ConnectionStateRequestBodyPropertiesArgs
        {
            PrivateLinkServiceConnectionState = new AzureNative.Migrate.Inputs.PrivateLinkServiceConnectionStateArgs
            {
                ActionsRequired = "",
                Status = AzureNative.Migrate.PrivateEndpointServiceConnectionStatus.Approved,
            },
        },
        ResourceGroupName = "pajindTest1",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := migrate.NewPrivateEndpointConnectionControllerPrivateEndpointConnection(ctx, "privateEndpointConnectionControllerPrivateEndpointConnection", &migrate.PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs{
			MigrateProjectName: pulumi.String("proj567"),
			PeConnectionName:   pulumi.String("proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6"),
			Properties: &migrate.ConnectionStateRequestBodyPropertiesArgs{
				PrivateLinkServiceConnectionState: &migrate.PrivateLinkServiceConnectionStateArgs{
					ActionsRequired: pulumi.String(""),
					Status:          pulumi.String(migrate.PrivateEndpointServiceConnectionStatusApproved),
				},
			},
			ResourceGroupName: pulumi.String("pajindTest1"),
		})
		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.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection;
import com.pulumi.azurenative.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs;
import com.pulumi.azurenative.migrate.inputs.ConnectionStateRequestBodyPropertiesArgs;
import com.pulumi.azurenative.migrate.inputs.PrivateLinkServiceConnectionStateArgs;
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 privateEndpointConnectionControllerPrivateEndpointConnection = new PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnection", PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs.builder()
            .migrateProjectName("proj567")
            .peConnectionName("proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6")
            .properties(ConnectionStateRequestBodyPropertiesArgs.builder()
                .privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
                    .actionsRequired("")
                    .status("Approved")
                    .build())
                .build())
            .resourceGroupName("pajindTest1")
            .build());

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

const privateEndpointConnectionControllerPrivateEndpointConnection = new azure_native.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnection", {
    migrateProjectName: "proj567",
    peConnectionName: "proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6",
    properties: {
        privateLinkServiceConnectionState: {
            actionsRequired: "",
            status: azure_native.migrate.PrivateEndpointServiceConnectionStatus.Approved,
        },
    },
    resourceGroupName: "pajindTest1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

private_endpoint_connection_controller_private_endpoint_connection = azure_native.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnection",
    migrate_project_name="proj567",
    pe_connection_name="proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6",
    properties={
        "private_link_service_connection_state": {
            "actions_required": "",
            "status": azure_native.migrate.PrivateEndpointServiceConnectionStatus.APPROVED,
        },
    },
    resource_group_name="pajindTest1")
Copy
resources:
  privateEndpointConnectionControllerPrivateEndpointConnection:
    type: azure-native:migrate:PrivateEndpointConnectionControllerPrivateEndpointConnection
    properties:
      migrateProjectName: proj567
      peConnectionName: proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6
      properties:
        privateLinkServiceConnectionState:
          actionsRequired: ""
          status: Approved
      resourceGroupName: pajindTest1
Copy

Create PrivateEndpointConnectionControllerPrivateEndpointConnection Resource

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

Constructor syntax

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

@overload
def PrivateEndpointConnectionControllerPrivateEndpointConnection(resource_name: str,
                                                                 opts: Optional[ResourceOptions] = None,
                                                                 migrate_project_name: Optional[str] = None,
                                                                 resource_group_name: Optional[str] = None,
                                                                 e_tag: Optional[str] = None,
                                                                 pe_connection_name: Optional[str] = None,
                                                                 properties: Optional[ConnectionStateRequestBodyPropertiesArgs] = None)
func NewPrivateEndpointConnectionControllerPrivateEndpointConnection(ctx *Context, name string, args PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs, opts ...ResourceOption) (*PrivateEndpointConnectionControllerPrivateEndpointConnection, error)
public PrivateEndpointConnectionControllerPrivateEndpointConnection(string name, PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs args, CustomResourceOptions? opts = null)
public PrivateEndpointConnectionControllerPrivateEndpointConnection(String name, PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs args)
public PrivateEndpointConnectionControllerPrivateEndpointConnection(String name, PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs args, CustomResourceOptions options)
type: azure-native:migrate:PrivateEndpointConnectionControllerPrivateEndpointConnection
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. PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
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. PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
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. PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
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. PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
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. PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
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 privateEndpointConnectionControllerPrivateEndpointConnectionResource = new AzureNative.Migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnectionResource", new()
{
    MigrateProjectName = "string",
    ResourceGroupName = "string",
    ETag = "string",
    PeConnectionName = "string",
    Properties = 
    {
        { "privateLinkServiceConnectionState", 
        {
            { "actionsRequired", "string" },
            { "description", "string" },
            { "status", "string" },
        } },
    },
});
Copy
example, err := migrate.NewPrivateEndpointConnectionControllerPrivateEndpointConnection(ctx, "privateEndpointConnectionControllerPrivateEndpointConnectionResource", &migrate.PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs{
	MigrateProjectName: "string",
	ResourceGroupName:  "string",
	ETag:               "string",
	PeConnectionName:   "string",
	Properties: map[string]interface{}{
		"privateLinkServiceConnectionState": map[string]interface{}{
			"actionsRequired": "string",
			"description":     "string",
			"status":          "string",
		},
	},
})
Copy
var privateEndpointConnectionControllerPrivateEndpointConnectionResource = new PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnectionResource", PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs.builder()
    .migrateProjectName("string")
    .resourceGroupName("string")
    .eTag("string")
    .peConnectionName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
private_endpoint_connection_controller_private_endpoint_connection_resource = azure_native.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnectionResource",
    migrate_project_name=string,
    resource_group_name=string,
    e_tag=string,
    pe_connection_name=string,
    properties={
        privateLinkServiceConnectionState: {
            actionsRequired: string,
            description: string,
            status: string,
        },
    })
Copy
const privateEndpointConnectionControllerPrivateEndpointConnectionResource = new azure_native.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection("privateEndpointConnectionControllerPrivateEndpointConnectionResource", {
    migrateProjectName: "string",
    resourceGroupName: "string",
    eTag: "string",
    peConnectionName: "string",
    properties: {
        privateLinkServiceConnectionState: {
            actionsRequired: "string",
            description: "string",
            status: "string",
        },
    },
});
Copy
type: azure-native:migrate:PrivateEndpointConnectionControllerPrivateEndpointConnection
properties:
    eTag: string
    migrateProjectName: string
    peConnectionName: string
    properties:
        privateLinkServiceConnectionState:
            actionsRequired: string
            description: string
            status: string
    resourceGroupName: string
Copy

PrivateEndpointConnectionControllerPrivateEndpointConnection 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 PrivateEndpointConnectionControllerPrivateEndpointConnection resource accepts the following input properties:

MigrateProjectName
This property is required.
Changes to this property will trigger replacement.
string
Migrate project name.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Azure Resource Group that project is part of.
ETag string
Gets the tag for optimistic concurrency control.
PeConnectionName Changes to this property will trigger replacement. string
Private endpoint connection name.
Properties Pulumi.AzureNative.Migrate.Inputs.ConnectionStateRequestBodyProperties
Properties of Connection state request.
MigrateProjectName
This property is required.
Changes to this property will trigger replacement.
string
Migrate project name.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Azure Resource Group that project is part of.
ETag string
Gets the tag for optimistic concurrency control.
PeConnectionName Changes to this property will trigger replacement. string
Private endpoint connection name.
Properties ConnectionStateRequestBodyPropertiesArgs
Properties of Connection state request.
migrateProjectName
This property is required.
Changes to this property will trigger replacement.
String
Migrate project name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Azure Resource Group that project is part of.
eTag String
Gets the tag for optimistic concurrency control.
peConnectionName Changes to this property will trigger replacement. String
Private endpoint connection name.
properties ConnectionStateRequestBodyProperties
Properties of Connection state request.
migrateProjectName
This property is required.
Changes to this property will trigger replacement.
string
Migrate project name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Azure Resource Group that project is part of.
eTag string
Gets the tag for optimistic concurrency control.
peConnectionName Changes to this property will trigger replacement. string
Private endpoint connection name.
properties ConnectionStateRequestBodyProperties
Properties of Connection state request.
migrate_project_name
This property is required.
Changes to this property will trigger replacement.
str
Migrate project name.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the Azure Resource Group that project is part of.
e_tag str
Gets the tag for optimistic concurrency control.
pe_connection_name Changes to this property will trigger replacement. str
Private endpoint connection name.
properties ConnectionStateRequestBodyPropertiesArgs
Properties of Connection state request.
migrateProjectName
This property is required.
Changes to this property will trigger replacement.
String
Migrate project name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Azure Resource Group that project is part of.
eTag String
Gets the tag for optimistic concurrency control.
peConnectionName Changes to this property will trigger replacement. String
Private endpoint connection name.
properties Property Map
Properties of Connection state request.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the name of the resource.
SystemData Pulumi.AzureNative.Migrate.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
Gets the resource type.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the name of the resource.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
Gets the resource type.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets the name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
Gets the resource type.
id string
The provider-assigned unique ID for this managed resource.
name string
Gets the name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
Gets the resource type.
id str
The provider-assigned unique ID for this managed resource.
name str
Gets the name of the resource.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
Gets the resource type.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets the name of the resource.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
Gets the resource type.

Supporting Types

ConnectionStateRequestBodyProperties
, ConnectionStateRequestBodyPropertiesArgs

privateLinkServiceConnectionState Property Map
Private endpoint connection state.

PrivateEndpointConnectionPropertiesResponse
, PrivateEndpointConnectionPropertiesResponseArgs

PrivateEndpoint This property is required. Pulumi.AzureNative.Migrate.Inputs.ResourceIdResponse
ARM id for the private endpoint resource corresponding to the connection.
ProvisioningState This property is required. string
Indicates whether there is an ongoing operation on the private endpoint.
PrivateLinkServiceConnectionState Pulumi.AzureNative.Migrate.Inputs.PrivateLinkServiceConnectionStateResponse
State of the private endpoint connection.
PrivateEndpoint This property is required. ResourceIdResponse
ARM id for the private endpoint resource corresponding to the connection.
ProvisioningState This property is required. string
Indicates whether there is an ongoing operation on the private endpoint.
PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
State of the private endpoint connection.
privateEndpoint This property is required. ResourceIdResponse
ARM id for the private endpoint resource corresponding to the connection.
provisioningState This property is required. String
Indicates whether there is an ongoing operation on the private endpoint.
privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
State of the private endpoint connection.
privateEndpoint This property is required. ResourceIdResponse
ARM id for the private endpoint resource corresponding to the connection.
provisioningState This property is required. string
Indicates whether there is an ongoing operation on the private endpoint.
privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
State of the private endpoint connection.
private_endpoint This property is required. ResourceIdResponse
ARM id for the private endpoint resource corresponding to the connection.
provisioning_state This property is required. str
Indicates whether there is an ongoing operation on the private endpoint.
private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
State of the private endpoint connection.
privateEndpoint This property is required. Property Map
ARM id for the private endpoint resource corresponding to the connection.
provisioningState This property is required. String
Indicates whether there is an ongoing operation on the private endpoint.
privateLinkServiceConnectionState Property Map
State of the private endpoint connection.

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

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.Migrate.PrivateEndpointServiceConnectionStatus | Pulumi.AzureNative.Migrate.Status
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 | Status
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 | Status
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 | Status
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 | Status
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" | "Inactive" | "Active"
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
Actions required on the private endpoint connection.
Description string
Description of the private endpoint connection.
Status string
Connection status of the private endpoint connection.
ActionsRequired string
Actions required on the private endpoint connection.
Description string
Description of the private endpoint connection.
Status string
Connection status of the private endpoint connection.
actionsRequired String
Actions required on the private endpoint connection.
description String
Description of the private endpoint connection.
status String
Connection status of the private endpoint connection.
actionsRequired string
Actions required on the private endpoint connection.
description string
Description of the private endpoint connection.
status string
Connection status of the private endpoint connection.
actions_required str
Actions required on the private endpoint connection.
description str
Description of the private endpoint connection.
status str
Connection status of the private endpoint connection.
actionsRequired String
Actions required on the private endpoint connection.
description String
Description of the private endpoint connection.
status String
Connection status of the private endpoint connection.

ResourceIdResponse
, ResourceIdResponseArgs

Id This property is required. string
Id This property is required. string
id This property is required. String
id This property is required. string
id This property is required. str
id This property is required. String

Status
, StatusArgs

Inactive
Inactive
Active
Active
StatusInactive
Inactive
StatusActive
Active
Inactive
Inactive
Active
Active
Inactive
Inactive
Active
Active
INACTIVE
Inactive
ACTIVE
Active
"Inactive"
Inactive
"Active"
Active

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:migrate:PrivateEndpointConnectionControllerPrivateEndpointConnection proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}/privateEndpointConnections/{peConnectionName} 
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