1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. PrivateEndpointConnectionControllerPrivateEndpointConnection
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.21.1 published on Wednesday, Dec 6, 2023 by Pulumi

azure-native.migrate.PrivateEndpointConnectionControllerPrivateEndpointConnection

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.21.1 published on Wednesday, Dec 6, 2023 by Pulumi

    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 = "Approved",
                },
            },
            ResourceGroupName = "pajindTest1",
        });
    
    });
    
    package main
    
    import (
    	"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.PrivateEndpointConnectionPropertiesResponse{
    				PrivateLinkServiceConnectionState: &migrate.PrivateLinkServiceConnectionStateArgs{
    					ActionsRequired: pulumi.String(""),
    					Status:          pulumi.String("Approved"),
    				},
    			},
    			ResourceGroupName: pulumi.String("pajindTest1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 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(Map.of("privateLinkServiceConnectionState", Map.ofEntries(
                    Map.entry("actionsRequired", ""),
                    Map.entry("status", "Approved")
                )))
                .resourceGroupName("pajindTest1")
                .build());
    
        }
    }
    
    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=azure_native.migrate.PrivateEndpointConnectionPropertiesResponseArgs(
            private_link_service_connection_state=azure_native.migrate.PrivateLinkServiceConnectionStateArgs(
                actions_required="",
                status="Approved",
            ),
        ),
        resource_group_name="pajindTest1")
    
    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: "Approved",
            },
        },
        resourceGroupName: "pajindTest1",
    });
    
    resources:
      privateEndpointConnectionControllerPrivateEndpointConnection:
        type: azure-native:migrate:PrivateEndpointConnectionControllerPrivateEndpointConnection
        properties:
          migrateProjectName: proj567
          peConnectionName: proj5675162pe.fdccace0-e303-4a79-80c8-3aa7c1f09cc6
          properties:
            privateLinkServiceConnectionState:
              actionsRequired:
              status: Approved
          resourceGroupName: pajindTest1
    

    Create PrivateEndpointConnectionControllerPrivateEndpointConnection Resource

    new PrivateEndpointConnectionControllerPrivateEndpointConnection(name: string, args: PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def PrivateEndpointConnectionControllerPrivateEndpointConnection(resource_name: str,
                                                                     opts: Optional[ResourceOptions] = None,
                                                                     e_tag: Optional[str] = None,
                                                                     migrate_project_name: Optional[str] = None,
                                                                     pe_connection_name: Optional[str] = None,
                                                                     properties: Optional[ConnectionStateRequestBodyPropertiesArgs] = None,
                                                                     resource_group_name: Optional[str] = None)
    @overload
    def PrivateEndpointConnectionControllerPrivateEndpointConnection(resource_name: str,
                                                                     args: PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs,
                                                                     opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateEndpointConnectionControllerPrivateEndpointConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The PrivateEndpointConnectionControllerPrivateEndpointConnection resource accepts the following input properties:

    MigrateProjectName string

    Migrate project name.

    ResourceGroupName string

    Name of the Azure Resource Group that project is part of.

    ETag string

    Gets the tag for optimistic concurrency control.

    PeConnectionName string

    Private endpoint connection name.

    Properties Pulumi.AzureNative.Migrate.Inputs.ConnectionStateRequestBodyProperties

    Properties of Connection state request.

    MigrateProjectName string

    Migrate project name.

    ResourceGroupName string

    Name of the Azure Resource Group that project is part of.

    ETag string

    Gets the tag for optimistic concurrency control.

    PeConnectionName string

    Private endpoint connection name.

    Properties ConnectionStateRequestBodyPropertiesArgs

    Properties of Connection state request.

    migrateProjectName String

    Migrate project name.

    resourceGroupName String

    Name of the Azure Resource Group that project is part of.

    eTag String

    Gets the tag for optimistic concurrency control.

    peConnectionName String

    Private endpoint connection name.

    properties ConnectionStateRequestBodyProperties

    Properties of Connection state request.

    migrateProjectName string

    Migrate project name.

    resourceGroupName string

    Name of the Azure Resource Group that project is part of.

    eTag string

    Gets the tag for optimistic concurrency control.

    peConnectionName string

    Private endpoint connection name.

    properties ConnectionStateRequestBodyProperties

    Properties of Connection state request.

    migrate_project_name str

    Migrate project name.

    resource_group_name 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 str

    Private endpoint connection name.

    properties ConnectionStateRequestBodyPropertiesArgs

    Properties of Connection state request.

    migrateProjectName String

    Migrate project name.

    resourceGroupName String

    Name of the Azure Resource Group that project is part of.

    eTag String

    Gets the tag for optimistic concurrency control.

    peConnectionName 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 Pulumi.AzureNative.Migrate.Inputs.ResourceIdResponse

    ARM id for the private endpoint resource corresponding to the connection.

    ProvisioningState 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 ResourceIdResponse

    ARM id for the private endpoint resource corresponding to the connection.

    ProvisioningState string

    Indicates whether there is an ongoing operation on the private endpoint.

    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse

    State of the private endpoint connection.

    privateEndpoint ResourceIdResponse

    ARM id for the private endpoint resource corresponding to the connection.

    provisioningState String

    Indicates whether there is an ongoing operation on the private endpoint.

    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse

    State of the private endpoint connection.

    privateEndpoint ResourceIdResponse

    ARM id for the private endpoint resource corresponding to the connection.

    provisioningState string

    Indicates whether there is an ongoing operation on the private endpoint.

    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse

    State of the private endpoint connection.

    private_endpoint ResourceIdResponse

    ARM id for the private endpoint resource corresponding to the connection.

    provisioning_state 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 Property Map

    ARM id for the private endpoint resource corresponding to the connection.

    provisioningState 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 string
    Id string
    id String
    id string
    id str
    id 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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.21.1 published on Wednesday, Dec 6, 2023 by Pulumi