azure-native.offazure.PrivateEndpointConnectionController
Explore with Pulumi AI
REST model used to encapsulate Private Link properties for tracked resources. 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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
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
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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
resources:
  privateEndpointConnectionController:
    type: azure-native:offazure:PrivateEndpointConnectionController
    properties:
      peConnectionName: -p-U2
      resourceGroupName: rgmigrate
      siteName: 1--tOY-47Q-X95WC3d-U
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 string
- The unique name of the resource.
- args PrivateEndpointConnectionControllerArgs
- 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 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 string
- The unique name of the resource.
- args PrivateEndpointConnectionControllerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateEndpointConnectionControllerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
    },
});
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"),
	},
})
var privateEndpointConnectionControllerResource = new PrivateEndpointConnectionController("privateEndpointConnectionControllerResource", PrivateEndpointConnectionControllerArgs.builder()
    .resourceGroupName("string")
    .siteName("string")
    .peConnectionName("string")
    .privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
        .actionsRequired("string")
        .description("string")
        .status("string")
        .build())
    .build());
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",
    })
const privateEndpointConnectionControllerResource = new azure_native.offazure.PrivateEndpointConnectionController("privateEndpointConnectionControllerResource", {
    resourceGroupName: "string",
    siteName: "string",
    peConnectionName: "string",
    privateLinkServiceConnectionState: {
        actionsRequired: "string",
        description: "string",
        status: "string",
    },
});
type: azure-native:offazure:PrivateEndpointConnectionController
properties:
    peConnectionName: string
    privateLinkServiceConnectionState:
        actionsRequired: string
        description: string
        status: string
    resourceGroupName: string
    siteName: string
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:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SiteName string
- Site name
- PeConnection stringName 
- Private link resource name.
- PrivateLink Pulumi.Service Connection State Azure Native. Off Azure. Inputs. Private Link Service Connection State 
- private endpoints connection state
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SiteName string
- Site name
- PeConnection stringName 
- Private link resource name.
- PrivateLink PrivateService Connection State Link Service Connection State Args 
- private endpoints connection state
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- siteName String
- Site name
- peConnection StringName 
- Private link resource name.
- privateLink PrivateService Connection State Link Service Connection State 
- private endpoints connection state
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- siteName string
- Site name
- peConnection stringName 
- Private link resource name.
- privateLink PrivateService Connection State Link Service Connection State 
- private endpoints connection state
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- site_name str
- Site name
- pe_connection_ strname 
- Private link resource name.
- private_link_ Privateservice_ connection_ state Link Service Connection State Args 
- private endpoints connection state
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- siteName String
- Site name
- peConnection StringName 
- Private link resource name.
- privateLink Property MapService Connection State 
- 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.Azure Native. Off Azure. Outputs. Resource Id Response 
- private endpoints
- ProvisioningState string
- provisioning state enum
- SystemData Pulumi.Azure Native. Off Azure. Outputs. System Data Response 
- 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 ResourceId Response 
- private endpoints
- ProvisioningState string
- provisioning state enum
- SystemData SystemData Response 
- 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 ResourceId Response 
- private endpoints
- provisioningState String
- provisioning state enum
- systemData SystemData Response 
- 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 ResourceId Response 
- private endpoints
- provisioningState string
- provisioning state enum
- systemData SystemData Response 
- 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 ResourceId Response 
- private endpoints
- provisioning_state str
- provisioning state enum
- system_data SystemData Response 
- 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.Azure Native. Off Azure. Private Link Service Connection State Status 
- state status
- ActionsRequired string
- actions required
- Description string
- description string
- Status
string | PrivateLink Service Connection State Status 
- state status
- actionsRequired String
- actions required
- description String
- description string
- status
String | PrivateLink Service Connection State Status 
- state status
- actionsRequired string
- actions required
- description string
- description string
- status
string | PrivateLink Service Connection State Status 
- state status
- actions_required str
- actions required
- description str
- description string
- status
str | PrivateLink Service Connection State Status 
- 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.
- PrivateLink Service Connection State Status Approved 
- ApprovedApproved value.
- PrivateLink Service Connection State Status Pending 
- PendingPending value.
- PrivateLink Service Connection State Status Rejected 
- RejectedRejected value.
- PrivateLink Service Connection State Status 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.
- "Approved"
- ApprovedApproved value.
- "Pending"
- PendingPending value.
- "Rejected"
- RejectedRejected value.
- "Disconnected"
- DisconnectedDisconnected value.
ResourceIdResponse, ResourceIdResponseArgs      
- Id string
- id name
- Id string
- id name
- id String
- id name
- id string
- id name
- id str
- id name
- id String
- id name
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0