1. Packages
  2. Azure Native
  3. API Docs
  4. offazure
  5. PrivateEndpointConnectionController
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.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.offazure.PrivateEndpointConnectionController

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.38.0 published on Monday, Apr 22, 2024 by Pulumi

    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.

    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 (
    	"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 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=azure_native.offazure.PrivateLinkServiceConnectionStateArgs(
            actions_required="swxghzuajrasojk",
            description="ljdykrrhmzi",
            status=azure_native.offazure.PrivateLinkServiceConnectionStateStatus.APPROVED,
        ),
        resource_group_name="rgmigrate",
        site_name="LuBO2I1-B85pJ1BZ251")
    
    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",
    });
    
    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 (
    	"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 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")
    
    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",
    });
    
    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.

    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=azure_native.offazure.PrivateLinkServiceConnectionStateArgs(
            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

    The PrivateEndpointConnectionController resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    SiteName string
    Site name
    PeConnectionName string
    Private link resource name.
    PrivateLinkServiceConnectionState Pulumi.AzureNative.OffAzure.Inputs.PrivateLinkServiceConnectionState
    private endpoints connection state
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    SiteName string
    Site name
    PeConnectionName string
    Private link resource name.
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateArgs
    private endpoints connection state
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    siteName String
    Site name
    peConnectionName String
    Private link resource name.
    privateLinkServiceConnectionState PrivateLinkServiceConnectionState
    private endpoints connection state
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    siteName string
    Site name
    peConnectionName string
    Private link resource name.
    privateLinkServiceConnectionState PrivateLinkServiceConnectionState
    private endpoints connection state
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    site_name str
    Site name
    pe_connection_name str
    Private link resource name.
    private_link_service_connection_state PrivateLinkServiceConnectionStateArgs
    private endpoints connection state
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    siteName String
    Site name
    peConnectionName 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 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.
    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} 
    

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

    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.38.0 published on Monday, Apr 22, 2024 by Pulumi