1. Packages
  2. Azure Native
  3. API Docs
  4. devices
  5. IotDpsResourcePrivateEndpointConnection
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

azure-native.devices.IotDpsResourcePrivateEndpointConnection

Explore with Pulumi AI

azure-native logo
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

    The private endpoint connection of a provisioning service API Version: 2020-03-01.

    Example Usage

    PrivateEndpointConnection_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var iotDpsResourcePrivateEndpointConnection = new AzureNative.Devices.IotDpsResourcePrivateEndpointConnection("iotDpsResourcePrivateEndpointConnection", new()
        {
            PrivateEndpointConnectionName = "myPrivateEndpointConnection",
            Properties = new AzureNative.Devices.Inputs.PrivateEndpointConnectionPropertiesArgs
            {
                PrivateLinkServiceConnectionState = new AzureNative.Devices.Inputs.PrivateLinkServiceConnectionStateArgs
                {
                    Description = "Approved by johndoe@contoso.com",
                    Status = "Approved",
                },
            },
            ResourceGroupName = "myResourceGroup",
            ResourceName = "myFirstProvisioningService",
        });
    
    });
    
    package main
    
    import (
    	devices "github.com/pulumi/pulumi-azure-native-sdk/devices"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := devices.NewIotDpsResourcePrivateEndpointConnection(ctx, "iotDpsResourcePrivateEndpointConnection", &devices.IotDpsResourcePrivateEndpointConnectionArgs{
    			PrivateEndpointConnectionName: pulumi.String("myPrivateEndpointConnection"),
    			Properties: devices.PrivateEndpointConnectionPropertiesResponse{
    				PrivateLinkServiceConnectionState: &devices.PrivateLinkServiceConnectionStateArgs{
    					Description: pulumi.String("Approved by johndoe@contoso.com"),
    					Status:      pulumi.String("Approved"),
    				},
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			ResourceName:      pulumi.String("myFirstProvisioningService"),
    		})
    		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.devices.IotDpsResourcePrivateEndpointConnection;
    import com.pulumi.azurenative.devices.IotDpsResourcePrivateEndpointConnectionArgs;
    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 iotDpsResourcePrivateEndpointConnection = new IotDpsResourcePrivateEndpointConnection("iotDpsResourcePrivateEndpointConnection", IotDpsResourcePrivateEndpointConnectionArgs.builder()        
                .privateEndpointConnectionName("myPrivateEndpointConnection")
                .properties(Map.of("privateLinkServiceConnectionState", Map.ofEntries(
                    Map.entry("description", "Approved by johndoe@contoso.com"),
                    Map.entry("status", "Approved")
                )))
                .resourceGroupName("myResourceGroup")
                .resourceName("myFirstProvisioningService")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    iot_dps_resource_private_endpoint_connection = azure_native.devices.IotDpsResourcePrivateEndpointConnection("iotDpsResourcePrivateEndpointConnection",
        private_endpoint_connection_name="myPrivateEndpointConnection",
        properties=azure_native.devices.PrivateEndpointConnectionPropertiesResponseArgs(
            private_link_service_connection_state=azure_native.devices.PrivateLinkServiceConnectionStateArgs(
                description="Approved by johndoe@contoso.com",
                status="Approved",
            ),
        ),
        resource_group_name="myResourceGroup",
        resource_name_="myFirstProvisioningService")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const iotDpsResourcePrivateEndpointConnection = new azure_native.devices.IotDpsResourcePrivateEndpointConnection("iotDpsResourcePrivateEndpointConnection", {
        privateEndpointConnectionName: "myPrivateEndpointConnection",
        properties: {
            privateLinkServiceConnectionState: {
                description: "Approved by johndoe@contoso.com",
                status: "Approved",
            },
        },
        resourceGroupName: "myResourceGroup",
        resourceName: "myFirstProvisioningService",
    });
    
    resources:
      iotDpsResourcePrivateEndpointConnection:
        type: azure-native:devices:IotDpsResourcePrivateEndpointConnection
        properties:
          privateEndpointConnectionName: myPrivateEndpointConnection
          properties:
            privateLinkServiceConnectionState:
              description: Approved by johndoe@contoso.com
              status: Approved
          resourceGroupName: myResourceGroup
          resourceName: myFirstProvisioningService
    

    Create IotDpsResourcePrivateEndpointConnection Resource

    new IotDpsResourcePrivateEndpointConnection(name: string, args: IotDpsResourcePrivateEndpointConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def IotDpsResourcePrivateEndpointConnection(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                private_endpoint_connection_name: Optional[str] = None,
                                                properties: Optional[PrivateEndpointConnectionPropertiesArgs] = None,
                                                resource_group_name: Optional[str] = None,
                                                resource_name_: Optional[str] = None)
    @overload
    def IotDpsResourcePrivateEndpointConnection(resource_name: str,
                                                args: IotDpsResourcePrivateEndpointConnectionArgs,
                                                opts: Optional[ResourceOptions] = None)
    func NewIotDpsResourcePrivateEndpointConnection(ctx *Context, name string, args IotDpsResourcePrivateEndpointConnectionArgs, opts ...ResourceOption) (*IotDpsResourcePrivateEndpointConnection, error)
    public IotDpsResourcePrivateEndpointConnection(string name, IotDpsResourcePrivateEndpointConnectionArgs args, CustomResourceOptions? opts = null)
    public IotDpsResourcePrivateEndpointConnection(String name, IotDpsResourcePrivateEndpointConnectionArgs args)
    public IotDpsResourcePrivateEndpointConnection(String name, IotDpsResourcePrivateEndpointConnectionArgs args, CustomResourceOptions options)
    
    type: azure-native:devices:IotDpsResourcePrivateEndpointConnection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args IotDpsResourcePrivateEndpointConnectionArgs
    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 IotDpsResourcePrivateEndpointConnectionArgs
    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 IotDpsResourcePrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IotDpsResourcePrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IotDpsResourcePrivateEndpointConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Properties Pulumi.AzureNative.Devices.Inputs.PrivateEndpointConnectionPropertiesArgs

    The properties of a private endpoint connection

    ResourceGroupName string

    The name of the resource group that contains the provisioning service.

    ResourceName string

    The name of the provisioning service.

    PrivateEndpointConnectionName string

    The name of the private endpoint connection

    Properties PrivateEndpointConnectionPropertiesArgs

    The properties of a private endpoint connection

    ResourceGroupName string

    The name of the resource group that contains the provisioning service.

    ResourceName string

    The name of the provisioning service.

    PrivateEndpointConnectionName string

    The name of the private endpoint connection

    properties PrivateEndpointConnectionPropertiesArgs

    The properties of a private endpoint connection

    resourceGroupName String

    The name of the resource group that contains the provisioning service.

    resourceName String

    The name of the provisioning service.

    privateEndpointConnectionName String

    The name of the private endpoint connection

    properties PrivateEndpointConnectionPropertiesArgs

    The properties of a private endpoint connection

    resourceGroupName string

    The name of the resource group that contains the provisioning service.

    resourceName string

    The name of the provisioning service.

    privateEndpointConnectionName string

    The name of the private endpoint connection

    properties PrivateEndpointConnectionPropertiesArgs

    The properties of a private endpoint connection

    resource_group_name str

    The name of the resource group that contains the provisioning service.

    resource_name str

    The name of the provisioning service.

    private_endpoint_connection_name str

    The name of the private endpoint connection

    properties Property Map

    The properties of a private endpoint connection

    resourceGroupName String

    The name of the resource group that contains the provisioning service.

    resourceName String

    The name of the provisioning service.

    privateEndpointConnectionName String

    The name of the private endpoint connection

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name.

    Type string

    The resource type.

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name.

    Type string

    The resource type.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name.

    type String

    The resource type.

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    The resource name.

    type string

    The resource type.

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    The resource name.

    type str

    The resource type.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name.

    type String

    The resource type.

    Supporting Types

    PrivateEndpointConnectionProperties

    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState

    The current state of a private endpoint connection

    privateLinkServiceConnectionState PrivateLinkServiceConnectionState

    The current state of a private endpoint connection

    privateLinkServiceConnectionState PrivateLinkServiceConnectionState

    The current state of a private endpoint connection

    private_link_service_connection_state PrivateLinkServiceConnectionState

    The current state of a private endpoint connection

    privateLinkServiceConnectionState Property Map

    The current state of a private endpoint connection

    PrivateEndpointConnectionPropertiesResponse

    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse

    The current state of a private endpoint connection

    PrivateEndpoint PrivateEndpointResponse

    The private endpoint property of a private endpoint connection

    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse

    The current state of a private endpoint connection

    privateEndpoint PrivateEndpointResponse

    The private endpoint property of a private endpoint connection

    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse

    The current state of a private endpoint connection

    privateEndpoint PrivateEndpointResponse

    The private endpoint property of a private endpoint connection

    private_link_service_connection_state PrivateLinkServiceConnectionStateResponse

    The current state of a private endpoint connection

    private_endpoint PrivateEndpointResponse

    The private endpoint property of a private endpoint connection

    privateLinkServiceConnectionState Property Map

    The current state of a private endpoint connection

    privateEndpoint Property Map

    The private endpoint property of a private endpoint connection

    PrivateEndpointResponse

    Id string

    The resource identifier.

    Id string

    The resource identifier.

    id String

    The resource identifier.

    id string

    The resource identifier.

    id str

    The resource identifier.

    id String

    The resource identifier.

    PrivateLinkServiceConnectionState

    Description string

    The description for the current state of a private endpoint connection

    Status string | Pulumi.AzureNative.Devices.PrivateLinkServiceConnectionStatus

    The status of a private endpoint connection

    ActionsRequired string

    Actions required for a private endpoint connection

    Description string

    The description for the current state of a private endpoint connection

    Status string | PrivateLinkServiceConnectionStatus

    The status of a private endpoint connection

    ActionsRequired string

    Actions required for a private endpoint connection

    description String

    The description for the current state of a private endpoint connection

    status String | PrivateLinkServiceConnectionStatus

    The status of a private endpoint connection

    actionsRequired String

    Actions required for a private endpoint connection

    description string

    The description for the current state of a private endpoint connection

    status string | PrivateLinkServiceConnectionStatus

    The status of a private endpoint connection

    actionsRequired string

    Actions required for a private endpoint connection

    description str

    The description for the current state of a private endpoint connection

    status str | PrivateLinkServiceConnectionStatus

    The status of a private endpoint connection

    actions_required str

    Actions required for a private endpoint connection

    description String

    The description for the current state of a private endpoint connection

    status String | "Pending" | "Approved" | "Rejected" | "Disconnected"

    The status of a private endpoint connection

    actionsRequired String

    Actions required for a private endpoint connection

    PrivateLinkServiceConnectionStateResponse

    Description string

    The description for the current state of a private endpoint connection

    Status string

    The status of a private endpoint connection

    ActionsRequired string

    Actions required for a private endpoint connection

    Description string

    The description for the current state of a private endpoint connection

    Status string

    The status of a private endpoint connection

    ActionsRequired string

    Actions required for a private endpoint connection

    description String

    The description for the current state of a private endpoint connection

    status String

    The status of a private endpoint connection

    actionsRequired String

    Actions required for a private endpoint connection

    description string

    The description for the current state of a private endpoint connection

    status string

    The status of a private endpoint connection

    actionsRequired string

    Actions required for a private endpoint connection

    description str

    The description for the current state of a private endpoint connection

    status str

    The status of a private endpoint connection

    actions_required str

    Actions required for a private endpoint connection

    description String

    The description for the current state of a private endpoint connection

    status String

    The status of a private endpoint connection

    actionsRequired String

    Actions required for a private endpoint connection

    PrivateLinkServiceConnectionStatus

    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    PrivateLinkServiceConnectionStatusPending
    Pending
    PrivateLinkServiceConnectionStatusApproved
    Approved
    PrivateLinkServiceConnectionStatusRejected
    Rejected
    PrivateLinkServiceConnectionStatusDisconnected
    Disconnected
    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    PENDING
    Pending
    APPROVED
    Approved
    REJECTED
    Rejected
    DISCONNECTED
    Disconnected
    "Pending"
    Pending
    "Approved"
    Approved
    "Rejected"
    Rejected
    "Disconnected"
    Disconnected

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:devices:IotDpsResourcePrivateEndpointConnection myPrivateEndpointConnection /subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/myResourceGroup/providers/Microsoft.Devices/ProvisioningServices/myFirstProvisioningService/PrivateEndpointConnections/myPrivateEndpointConnection 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi