1. Packages
  2. Azure Native
  3. API Docs
  4. offazure
  5. PrivateEndpointConnectionController
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.offazure.PrivateEndpointConnectionController

Explore with Pulumi AI

REST model used to encapsulate Private Link properties for tracked resources.

Uses Azure REST API version 2023-06-06.

Other available API versions: 2023-10-01-preview, 2024-05-01-preview.

Example Usage

PrivateEndpointConnectionController_Create_MaximumSet_Gen

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

return await Deployment.RunAsync(() => 
{
    var privateEndpointConnectionController = new AzureNative.OffAzure.PrivateEndpointConnectionController("privateEndpointConnectionController", new()
    {
        PeConnectionName = "-KF3-86-D3L-8M",
        PrivateLinkServiceConnectionState = new AzureNative.OffAzure.Inputs.PrivateLinkServiceConnectionStateArgs
        {
            ActionsRequired = "swxghzuajrasojk",
            Description = "ljdykrrhmzi",
            Status = AzureNative.OffAzure.PrivateLinkServiceConnectionStateStatus.Approved,
        },
        ResourceGroupName = "rgmigrate",
        SiteName = "LuBO2I1-B85pJ1BZ251",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := offazure.NewPrivateEndpointConnectionController(ctx, "privateEndpointConnectionController", &offazure.PrivateEndpointConnectionControllerArgs{
			PeConnectionName: pulumi.String("-KF3-86-D3L-8M"),
			PrivateLinkServiceConnectionState: &offazure.PrivateLinkServiceConnectionStateArgs{
				ActionsRequired: pulumi.String("swxghzuajrasojk"),
				Description:     pulumi.String("ljdykrrhmzi"),
				Status:          pulumi.String(offazure.PrivateLinkServiceConnectionStateStatusApproved),
			},
			ResourceGroupName: pulumi.String("rgmigrate"),
			SiteName:          pulumi.String("LuBO2I1-B85pJ1BZ251"),
		})
		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.offazure.PrivateEndpointConnectionController;
import com.pulumi.azurenative.offazure.PrivateEndpointConnectionControllerArgs;
import com.pulumi.azurenative.offazure.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 privateEndpointConnectionController = new PrivateEndpointConnectionController("privateEndpointConnectionController", PrivateEndpointConnectionControllerArgs.builder()
            .peConnectionName("-KF3-86-D3L-8M")
            .privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
                .actionsRequired("swxghzuajrasojk")
                .description("ljdykrrhmzi")
                .status("Approved")
                .build())
            .resourceGroupName("rgmigrate")
            .siteName("LuBO2I1-B85pJ1BZ251")
            .build());

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

const privateEndpointConnectionController = new azure_native.offazure.PrivateEndpointConnectionController("privateEndpointConnectionController", {
    peConnectionName: "-KF3-86-D3L-8M",
    privateLinkServiceConnectionState: {
        actionsRequired: "swxghzuajrasojk",
        description: "ljdykrrhmzi",
        status: azure_native.offazure.PrivateLinkServiceConnectionStateStatus.Approved,
    },
    resourceGroupName: "rgmigrate",
    siteName: "LuBO2I1-B85pJ1BZ251",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

private_endpoint_connection_controller = azure_native.offazure.PrivateEndpointConnectionController("privateEndpointConnectionController",
    pe_connection_name="-KF3-86-D3L-8M",
    private_link_service_connection_state={
        "actions_required": "swxghzuajrasojk",
        "description": "ljdykrrhmzi",
        "status": azure_native.offazure.PrivateLinkServiceConnectionStateStatus.APPROVED,
    },
    resource_group_name="rgmigrate",
    site_name="LuBO2I1-B85pJ1BZ251")
Copy
resources:
  privateEndpointConnectionController:
    type: azure-native:offazure:PrivateEndpointConnectionController
    properties:
      peConnectionName: -KF3-86-D3L-8M
      privateLinkServiceConnectionState:
        actionsRequired: swxghzuajrasojk
        description: ljdykrrhmzi
        status: Approved
      resourceGroupName: rgmigrate
      siteName: LuBO2I1-B85pJ1BZ251
Copy

PrivateEndpointConnectionController_Create_MinimumSet_Gen

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

return await Deployment.RunAsync(() => 
{
    var privateEndpointConnectionController = new AzureNative.OffAzure.PrivateEndpointConnectionController("privateEndpointConnectionController", new()
    {
        PeConnectionName = "-p-U2",
        ResourceGroupName = "rgmigrate",
        SiteName = "1--tOY-47Q-X95WC3d-U",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := offazure.NewPrivateEndpointConnectionController(ctx, "privateEndpointConnectionController", &offazure.PrivateEndpointConnectionControllerArgs{
			PeConnectionName:  pulumi.String("-p-U2"),
			ResourceGroupName: pulumi.String("rgmigrate"),
			SiteName:          pulumi.String("1--tOY-47Q-X95WC3d-U"),
		})
		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.offazure.PrivateEndpointConnectionController;
import com.pulumi.azurenative.offazure.PrivateEndpointConnectionControllerArgs;
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 privateEndpointConnectionController = new PrivateEndpointConnectionController("privateEndpointConnectionController", PrivateEndpointConnectionControllerArgs.builder()
            .peConnectionName("-p-U2")
            .resourceGroupName("rgmigrate")
            .siteName("1--tOY-47Q-X95WC3d-U")
            .build());

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

const privateEndpointConnectionController = new azure_native.offazure.PrivateEndpointConnectionController("privateEndpointConnectionController", {
    peConnectionName: "-p-U2",
    resourceGroupName: "rgmigrate",
    siteName: "1--tOY-47Q-X95WC3d-U",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

private_endpoint_connection_controller = azure_native.offazure.PrivateEndpointConnectionController("privateEndpointConnectionController",
    pe_connection_name="-p-U2",
    resource_group_name="rgmigrate",
    site_name="1--tOY-47Q-X95WC3d-U")
Copy
resources:
  privateEndpointConnectionController:
    type: azure-native:offazure:PrivateEndpointConnectionController
    properties:
      peConnectionName: -p-U2
      resourceGroupName: rgmigrate
      siteName: 1--tOY-47Q-X95WC3d-U
Copy

Create PrivateEndpointConnectionController Resource

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

Constructor syntax

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

@overload
def PrivateEndpointConnectionController(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        resource_group_name: Optional[str] = None,
                                        site_name: Optional[str] = None,
                                        pe_connection_name: Optional[str] = None,
                                        private_link_service_connection_state: Optional[PrivateLinkServiceConnectionStateArgs] = None)
func NewPrivateEndpointConnectionController(ctx *Context, name string, args PrivateEndpointConnectionControllerArgs, opts ...ResourceOption) (*PrivateEndpointConnectionController, error)
public PrivateEndpointConnectionController(string name, PrivateEndpointConnectionControllerArgs args, CustomResourceOptions? opts = null)
public PrivateEndpointConnectionController(String name, PrivateEndpointConnectionControllerArgs args)
public PrivateEndpointConnectionController(String name, PrivateEndpointConnectionControllerArgs args, CustomResourceOptions options)
type: azure-native:offazure:PrivateEndpointConnectionController
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. PrivateEndpointConnectionControllerArgs
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. PrivateEndpointConnectionControllerArgs
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. PrivateEndpointConnectionControllerArgs
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. PrivateEndpointConnectionControllerArgs
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. PrivateEndpointConnectionControllerArgs
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 privateEndpointConnectionControllerResource = new AzureNative.OffAzure.PrivateEndpointConnectionController("privateEndpointConnectionControllerResource", new()
{
    ResourceGroupName = "string",
    SiteName = "string",
    PeConnectionName = "string",
    PrivateLinkServiceConnectionState = new AzureNative.OffAzure.Inputs.PrivateLinkServiceConnectionStateArgs
    {
        ActionsRequired = "string",
        Description = "string",
        Status = "string",
    },
});
Copy
example, err := offazure.NewPrivateEndpointConnectionController(ctx, "privateEndpointConnectionControllerResource", &offazure.PrivateEndpointConnectionControllerArgs{
	ResourceGroupName: pulumi.String("string"),
	SiteName:          pulumi.String("string"),
	PeConnectionName:  pulumi.String("string"),
	PrivateLinkServiceConnectionState: &offazure.PrivateLinkServiceConnectionStateArgs{
		ActionsRequired: pulumi.String("string"),
		Description:     pulumi.String("string"),
		Status:          pulumi.String("string"),
	},
})
Copy
var privateEndpointConnectionControllerResource = new PrivateEndpointConnectionController("privateEndpointConnectionControllerResource", PrivateEndpointConnectionControllerArgs.builder()
    .resourceGroupName("string")
    .siteName("string")
    .peConnectionName("string")
    .privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
        .actionsRequired("string")
        .description("string")
        .status("string")
        .build())
    .build());
Copy
private_endpoint_connection_controller_resource = azure_native.offazure.PrivateEndpointConnectionController("privateEndpointConnectionControllerResource",
    resource_group_name="string",
    site_name="string",
    pe_connection_name="string",
    private_link_service_connection_state={
        "actions_required": "string",
        "description": "string",
        "status": "string",
    })
Copy
const privateEndpointConnectionControllerResource = new azure_native.offazure.PrivateEndpointConnectionController("privateEndpointConnectionControllerResource", {
    resourceGroupName: "string",
    siteName: "string",
    peConnectionName: "string",
    privateLinkServiceConnectionState: {
        actionsRequired: "string",
        description: "string",
        status: "string",
    },
});
Copy
type: azure-native:offazure:PrivateEndpointConnectionController
properties:
    peConnectionName: string
    privateLinkServiceConnectionState:
        actionsRequired: string
        description: string
        status: string
    resourceGroupName: string
    siteName: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SiteName
This property is required.
Changes to this property will trigger replacement.
string
Site name
PeConnectionName Changes to this property will trigger replacement. string
Private link resource name.
PrivateLinkServiceConnectionState Pulumi.AzureNative.OffAzure.Inputs.PrivateLinkServiceConnectionState
private endpoints connection state
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SiteName
This property is required.
Changes to this property will trigger replacement.
string
Site name
PeConnectionName Changes to this property will trigger replacement. string
Private link resource name.
PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateArgs
private endpoints connection state
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
siteName
This property is required.
Changes to this property will trigger replacement.
String
Site name
peConnectionName Changes to this property will trigger replacement. String
Private link resource name.
privateLinkServiceConnectionState PrivateLinkServiceConnectionState
private endpoints connection state
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
siteName
This property is required.
Changes to this property will trigger replacement.
string
Site name
peConnectionName Changes to this property will trigger replacement. string
Private link resource name.
privateLinkServiceConnectionState PrivateLinkServiceConnectionState
private endpoints connection state
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
site_name
This property is required.
Changes to this property will trigger replacement.
str
Site name
pe_connection_name Changes to this property will trigger replacement. str
Private link resource name.
private_link_service_connection_state PrivateLinkServiceConnectionStateArgs
private endpoints connection state
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
siteName
This property is required.
Changes to this property will trigger replacement.
String
Site name
peConnectionName Changes to this property will trigger replacement. String
Private link resource name.
privateLinkServiceConnectionState Property Map
private endpoints connection state

Outputs

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

GroupIds List<string>
array of group ids
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
PrivateEndpoint Pulumi.AzureNative.OffAzure.Outputs.ResourceIdResponse
private endpoints
ProvisioningState string
provisioning state enum
SystemData Pulumi.AzureNative.OffAzure.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"
GroupIds []string
array of group ids
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
PrivateEndpoint ResourceIdResponse
private endpoints
ProvisioningState string
provisioning state enum
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"
groupIds List<String>
array of group ids
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
privateEndpoint ResourceIdResponse
private endpoints
provisioningState String
provisioning state enum
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"
groupIds string[]
array of group ids
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
privateEndpoint ResourceIdResponse
private endpoints
provisioningState string
provisioning state enum
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"
group_ids Sequence[str]
array of group ids
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
private_endpoint ResourceIdResponse
private endpoints
provisioning_state str
provisioning state enum
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"
groupIds List<String>
array of group ids
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
privateEndpoint Property Map
private endpoints
provisioningState String
provisioning state enum
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

PrivateLinkServiceConnectionState
, PrivateLinkServiceConnectionStateArgs

ActionsRequired string
actions required
Description string
description string
Status string | Pulumi.AzureNative.OffAzure.PrivateLinkServiceConnectionStateStatus
state status
ActionsRequired string
actions required
Description string
description string
Status string | PrivateLinkServiceConnectionStateStatus
state status
actionsRequired String
actions required
description String
description string
status String | PrivateLinkServiceConnectionStateStatus
state status
actionsRequired string
actions required
description string
description string
status string | PrivateLinkServiceConnectionStateStatus
state status
actions_required str
actions required
description str
description string
status str | PrivateLinkServiceConnectionStateStatus
state status
actionsRequired String
actions required
description String
description string
status String | "Approved" | "Pending" | "Rejected" | "Disconnected"
state status

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
actions required
Description string
description string
Status string
state status
ActionsRequired string
actions required
Description string
description string
Status string
state status
actionsRequired String
actions required
description String
description string
status String
state status
actionsRequired string
actions required
description string
description string
status string
state status
actions_required str
actions required
description str
description string
status str
state status
actionsRequired String
actions required
description String
description string
status String
state status

PrivateLinkServiceConnectionStateStatus
, PrivateLinkServiceConnectionStateStatusArgs

Approved
ApprovedApproved value.
Pending
PendingPending value.
Rejected
RejectedRejected value.
Disconnected
DisconnectedDisconnected value.
PrivateLinkServiceConnectionStateStatusApproved
ApprovedApproved value.
PrivateLinkServiceConnectionStateStatusPending
PendingPending value.
PrivateLinkServiceConnectionStateStatusRejected
RejectedRejected value.
PrivateLinkServiceConnectionStateStatusDisconnected
DisconnectedDisconnected value.
Approved
ApprovedApproved value.
Pending
PendingPending value.
Rejected
RejectedRejected value.
Disconnected
DisconnectedDisconnected value.
Approved
ApprovedApproved value.
Pending
PendingPending value.
Rejected
RejectedRejected value.
Disconnected
DisconnectedDisconnected value.
APPROVED
ApprovedApproved value.
PENDING
PendingPending value.
REJECTED
RejectedRejected value.
DISCONNECTED
DisconnectedDisconnected value.
"Approved"
ApprovedApproved value.
"Pending"
PendingPending value.
"Rejected"
RejectedRejected value.
"Disconnected"
DisconnectedDisconnected value.

ResourceIdResponse
, ResourceIdResponseArgs

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

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:offazure:PrivateEndpointConnectionController lpmzrxdxhivwalyhlkjtl /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OffAzure/masterSites/{siteName}/privateEndpointConnections/{peConnectionName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0