1. Packages
  2. Azure Native v2
  3. API Docs
  4. sql
  5. ManagedInstancePrivateEndpointConnection
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.sql.ManagedInstancePrivateEndpointConnection

Explore with Pulumi AI

A private endpoint connection Azure REST API version: 2021-11-01. Prior API version in Azure Native 1.x: 2020-11-01-preview.

Other available API versions: 2022-11-01-preview, 2023-02-01-preview, 2023-05-01-preview, 2023-08-01-preview, 2024-05-01-preview.

Example Usage

Approve or reject a private endpoint connection with a given name.

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

return await Deployment.RunAsync(() => 
{
    var managedInstancePrivateEndpointConnection = new AzureNative.Sql.ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnection", new()
    {
        ManagedInstanceName = "test-cl",
        PrivateEndpointConnectionName = "private-endpoint-connection-name",
        PrivateLinkServiceConnectionState = new AzureNative.Sql.Inputs.ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs
        {
            Description = "Approved by johndoe@contoso.com",
            Status = "Approved",
        },
        ResourceGroupName = "Default",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sql.NewManagedInstancePrivateEndpointConnection(ctx, "managedInstancePrivateEndpointConnection", &sql.ManagedInstancePrivateEndpointConnectionArgs{
			ManagedInstanceName:           pulumi.String("test-cl"),
			PrivateEndpointConnectionName: pulumi.String("private-endpoint-connection-name"),
			PrivateLinkServiceConnectionState: &sql.ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs{
				Description: pulumi.String("Approved by johndoe@contoso.com"),
				Status:      pulumi.String("Approved"),
			},
			ResourceGroupName: pulumi.String("Default"),
		})
		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.sql.ManagedInstancePrivateEndpointConnection;
import com.pulumi.azurenative.sql.ManagedInstancePrivateEndpointConnectionArgs;
import com.pulumi.azurenative.sql.inputs.ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs;
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 managedInstancePrivateEndpointConnection = new ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnection", ManagedInstancePrivateEndpointConnectionArgs.builder()
            .managedInstanceName("test-cl")
            .privateEndpointConnectionName("private-endpoint-connection-name")
            .privateLinkServiceConnectionState(ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs.builder()
                .description("Approved by johndoe@contoso.com")
                .status("Approved")
                .build())
            .resourceGroupName("Default")
            .build());

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

const managedInstancePrivateEndpointConnection = new azure_native.sql.ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnection", {
    managedInstanceName: "test-cl",
    privateEndpointConnectionName: "private-endpoint-connection-name",
    privateLinkServiceConnectionState: {
        description: "Approved by johndoe@contoso.com",
        status: "Approved",
    },
    resourceGroupName: "Default",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

managed_instance_private_endpoint_connection = azure_native.sql.ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnection",
    managed_instance_name="test-cl",
    private_endpoint_connection_name="private-endpoint-connection-name",
    private_link_service_connection_state={
        "description": "Approved by johndoe@contoso.com",
        "status": "Approved",
    },
    resource_group_name="Default")
Copy
resources:
  managedInstancePrivateEndpointConnection:
    type: azure-native:sql:ManagedInstancePrivateEndpointConnection
    properties:
      managedInstanceName: test-cl
      privateEndpointConnectionName: private-endpoint-connection-name
      privateLinkServiceConnectionState:
        description: Approved by johndoe@contoso.com
        status: Approved
      resourceGroupName: Default
Copy

Create ManagedInstancePrivateEndpointConnection Resource

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

Constructor syntax

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

@overload
def ManagedInstancePrivateEndpointConnection(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             managed_instance_name: Optional[str] = None,
                                             resource_group_name: Optional[str] = None,
                                             private_endpoint: Optional[ManagedInstancePrivateEndpointPropertyArgs] = None,
                                             private_endpoint_connection_name: Optional[str] = None,
                                             private_link_service_connection_state: Optional[ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs] = None)
func NewManagedInstancePrivateEndpointConnection(ctx *Context, name string, args ManagedInstancePrivateEndpointConnectionArgs, opts ...ResourceOption) (*ManagedInstancePrivateEndpointConnection, error)
public ManagedInstancePrivateEndpointConnection(string name, ManagedInstancePrivateEndpointConnectionArgs args, CustomResourceOptions? opts = null)
public ManagedInstancePrivateEndpointConnection(String name, ManagedInstancePrivateEndpointConnectionArgs args)
public ManagedInstancePrivateEndpointConnection(String name, ManagedInstancePrivateEndpointConnectionArgs args, CustomResourceOptions options)
type: azure-native:sql:ManagedInstancePrivateEndpointConnection
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. ManagedInstancePrivateEndpointConnectionArgs
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. ManagedInstancePrivateEndpointConnectionArgs
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. ManagedInstancePrivateEndpointConnectionArgs
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. ManagedInstancePrivateEndpointConnectionArgs
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. ManagedInstancePrivateEndpointConnectionArgs
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 managedInstancePrivateEndpointConnectionResource = new AzureNative.Sql.ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnectionResource", new()
{
    ManagedInstanceName = "string",
    ResourceGroupName = "string",
    PrivateEndpoint = 
    {
        { "id", "string" },
    },
    PrivateEndpointConnectionName = "string",
    PrivateLinkServiceConnectionState = 
    {
        { "description", "string" },
        { "status", "string" },
    },
});
Copy
example, err := sql.NewManagedInstancePrivateEndpointConnection(ctx, "managedInstancePrivateEndpointConnectionResource", &sql.ManagedInstancePrivateEndpointConnectionArgs{
	ManagedInstanceName: "string",
	ResourceGroupName:   "string",
	PrivateEndpoint: map[string]interface{}{
		"id": "string",
	},
	PrivateEndpointConnectionName: "string",
	PrivateLinkServiceConnectionState: map[string]interface{}{
		"description": "string",
		"status":      "string",
	},
})
Copy
var managedInstancePrivateEndpointConnectionResource = new ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnectionResource", ManagedInstancePrivateEndpointConnectionArgs.builder()
    .managedInstanceName("string")
    .resourceGroupName("string")
    .privateEndpoint(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .privateEndpointConnectionName("string")
    .privateLinkServiceConnectionState(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
managed_instance_private_endpoint_connection_resource = azure_native.sql.ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnectionResource",
    managed_instance_name=string,
    resource_group_name=string,
    private_endpoint={
        id: string,
    },
    private_endpoint_connection_name=string,
    private_link_service_connection_state={
        description: string,
        status: string,
    })
Copy
const managedInstancePrivateEndpointConnectionResource = new azure_native.sql.ManagedInstancePrivateEndpointConnection("managedInstancePrivateEndpointConnectionResource", {
    managedInstanceName: "string",
    resourceGroupName: "string",
    privateEndpoint: {
        id: "string",
    },
    privateEndpointConnectionName: "string",
    privateLinkServiceConnectionState: {
        description: "string",
        status: "string",
    },
});
Copy
type: azure-native:sql:ManagedInstancePrivateEndpointConnection
properties:
    managedInstanceName: string
    privateEndpoint:
        id: string
    privateEndpointConnectionName: string
    privateLinkServiceConnectionState:
        description: string
        status: string
    resourceGroupName: string
Copy

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

ManagedInstanceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the managed instance.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
PrivateEndpoint Pulumi.AzureNative.Sql.Inputs.ManagedInstancePrivateEndpointProperty
Private endpoint which the connection belongs to.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
PrivateLinkServiceConnectionState Pulumi.AzureNative.Sql.Inputs.ManagedInstancePrivateLinkServiceConnectionStateProperty
Connection State of the Private Endpoint Connection.
ManagedInstanceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the managed instance.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
PrivateEndpoint ManagedInstancePrivateEndpointPropertyArgs
Private endpoint which the connection belongs to.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
PrivateLinkServiceConnectionState ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs
Connection State of the Private Endpoint Connection.
managedInstanceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the managed instance.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
privateEndpoint ManagedInstancePrivateEndpointProperty
Private endpoint which the connection belongs to.
privateEndpointConnectionName Changes to this property will trigger replacement. String
privateLinkServiceConnectionState ManagedInstancePrivateLinkServiceConnectionStateProperty
Connection State of the Private Endpoint Connection.
managedInstanceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the managed instance.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
privateEndpoint ManagedInstancePrivateEndpointProperty
Private endpoint which the connection belongs to.
privateEndpointConnectionName Changes to this property will trigger replacement. string
privateLinkServiceConnectionState ManagedInstancePrivateLinkServiceConnectionStateProperty
Connection State of the Private Endpoint Connection.
managed_instance_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the managed instance.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
private_endpoint ManagedInstancePrivateEndpointPropertyArgs
Private endpoint which the connection belongs to.
private_endpoint_connection_name Changes to this property will trigger replacement. str
private_link_service_connection_state ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs
Connection State of the Private Endpoint Connection.
managedInstanceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the managed instance.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
privateEndpoint Property Map
Private endpoint which the connection belongs to.
privateEndpointConnectionName Changes to this property will trigger replacement. String
privateLinkServiceConnectionState Property Map
Connection State of the Private Endpoint Connection.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
State of the Private Endpoint Connection.
Type string
Resource type.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
State of the Private Endpoint Connection.
Type string
Resource type.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
State of the Private Endpoint Connection.
type String
Resource type.
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name.
provisioningState string
State of the Private Endpoint Connection.
type string
Resource type.
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name.
provisioning_state str
State of the Private Endpoint Connection.
type str
Resource type.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
State of the Private Endpoint Connection.
type String
Resource type.

Supporting Types

ManagedInstancePrivateEndpointProperty
, ManagedInstancePrivateEndpointPropertyArgs

Id string
Resource id of the private endpoint.
Id string
Resource id of the private endpoint.
id String
Resource id of the private endpoint.
id string
Resource id of the private endpoint.
id str
Resource id of the private endpoint.
id String
Resource id of the private endpoint.

ManagedInstancePrivateEndpointPropertyResponse
, ManagedInstancePrivateEndpointPropertyResponseArgs

Id string
Resource id of the private endpoint.
Id string
Resource id of the private endpoint.
id String
Resource id of the private endpoint.
id string
Resource id of the private endpoint.
id str
Resource id of the private endpoint.
id String
Resource id of the private endpoint.

ManagedInstancePrivateLinkServiceConnectionStateProperty
, ManagedInstancePrivateLinkServiceConnectionStatePropertyArgs

Description This property is required. string
The private link service connection description.
Status This property is required. string
The private link service connection status.
Description This property is required. string
The private link service connection description.
Status This property is required. string
The private link service connection status.
description This property is required. String
The private link service connection description.
status This property is required. String
The private link service connection status.
description This property is required. string
The private link service connection description.
status This property is required. string
The private link service connection status.
description This property is required. str
The private link service connection description.
status This property is required. str
The private link service connection status.
description This property is required. String
The private link service connection description.
status This property is required. String
The private link service connection status.

ManagedInstancePrivateLinkServiceConnectionStatePropertyResponse
, ManagedInstancePrivateLinkServiceConnectionStatePropertyResponseArgs

ActionsRequired This property is required. string
The private link service connection description.
Description This property is required. string
The private link service connection description.
Status This property is required. string
The private link service connection status.
ActionsRequired This property is required. string
The private link service connection description.
Description This property is required. string
The private link service connection description.
Status This property is required. string
The private link service connection status.
actionsRequired This property is required. String
The private link service connection description.
description This property is required. String
The private link service connection description.
status This property is required. String
The private link service connection status.
actionsRequired This property is required. string
The private link service connection description.
description This property is required. string
The private link service connection description.
status This property is required. string
The private link service connection status.
actions_required This property is required. str
The private link service connection description.
description This property is required. str
The private link service connection description.
status This property is required. str
The private link service connection status.
actionsRequired This property is required. String
The private link service connection description.
description This property is required. String
The private link service connection description.
status This property is required. String
The private link service connection status.

Import

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

$ pulumi import azure-native:sql:ManagedInstancePrivateEndpointConnection private-endpoint-connection-name /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/privateEndpointConnections/{privateEndpointConnectionName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0