1. Packages
  2. Azure Native
  3. API Docs
  4. servicebus
  5. PrivateEndpointConnection
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.82.0 published on Friday, Jan 10, 2025 by Pulumi

azure-native.servicebus.PrivateEndpointConnection

Explore with Pulumi AI

Properties of the PrivateEndpointConnection. Azure REST API version: 2022-01-01-preview. Prior API version in Azure Native 1.x: 2018-01-01-preview.

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

Example Usage

NameSpacePrivateEndPointConnectionCreate

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

return await Deployment.RunAsync(() => 
{
    var privateEndpointConnection = new AzureNative.ServiceBus.PrivateEndpointConnection("privateEndpointConnection", new()
    {
        NamespaceName = "sdk-Namespace-2924",
        PrivateEndpoint = new AzureNative.ServiceBus.Inputs.PrivateEndpointArgs
        {
            Id = "/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-ServiceBus-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847",
        },
        PrivateEndpointConnectionName = "privateEndpointConnectionName",
        PrivateLinkServiceConnectionState = new AzureNative.ServiceBus.Inputs.ConnectionStateArgs
        {
            Description = "testing",
            Status = AzureNative.ServiceBus.PrivateLinkConnectionStatus.Rejected,
        },
        ProvisioningState = AzureNative.ServiceBus.EndPointProvisioningState.Succeeded,
        ResourceGroupName = "ArunMonocle",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := servicebus.NewPrivateEndpointConnection(ctx, "privateEndpointConnection", &servicebus.PrivateEndpointConnectionArgs{
			NamespaceName: pulumi.String("sdk-Namespace-2924"),
			PrivateEndpoint: &servicebus.PrivateEndpointArgs{
				Id: pulumi.String("/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-ServiceBus-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847"),
			},
			PrivateEndpointConnectionName: pulumi.String("privateEndpointConnectionName"),
			PrivateLinkServiceConnectionState: &servicebus.ConnectionStateArgs{
				Description: pulumi.String("testing"),
				Status:      pulumi.String(servicebus.PrivateLinkConnectionStatusRejected),
			},
			ProvisioningState: pulumi.String(servicebus.EndPointProvisioningStateSucceeded),
			ResourceGroupName: pulumi.String("ArunMonocle"),
		})
		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.servicebus.PrivateEndpointConnection;
import com.pulumi.azurenative.servicebus.PrivateEndpointConnectionArgs;
import com.pulumi.azurenative.servicebus.inputs.PrivateEndpointArgs;
import com.pulumi.azurenative.servicebus.inputs.ConnectionStateArgs;
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 privateEndpointConnection = new PrivateEndpointConnection("privateEndpointConnection", PrivateEndpointConnectionArgs.builder()
            .namespaceName("sdk-Namespace-2924")
            .privateEndpoint(PrivateEndpointArgs.builder()
                .id("/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-ServiceBus-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847")
                .build())
            .privateEndpointConnectionName("privateEndpointConnectionName")
            .privateLinkServiceConnectionState(ConnectionStateArgs.builder()
                .description("testing")
                .status("Rejected")
                .build())
            .provisioningState("Succeeded")
            .resourceGroupName("ArunMonocle")
            .build());

    }
}
Copy
import pulumi
import pulumi_azure_native as azure_native

private_endpoint_connection = azure_native.servicebus.PrivateEndpointConnection("privateEndpointConnection",
    namespace_name="sdk-Namespace-2924",
    private_endpoint={
        "id": "/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-ServiceBus-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847",
    },
    private_endpoint_connection_name="privateEndpointConnectionName",
    private_link_service_connection_state={
        "description": "testing",
        "status": azure_native.servicebus.PrivateLinkConnectionStatus.REJECTED,
    },
    provisioning_state=azure_native.servicebus.EndPointProvisioningState.SUCCEEDED,
    resource_group_name="ArunMonocle")
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const privateEndpointConnection = new azure_native.servicebus.PrivateEndpointConnection("privateEndpointConnection", {
    namespaceName: "sdk-Namespace-2924",
    privateEndpoint: {
        id: "/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-ServiceBus-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847",
    },
    privateEndpointConnectionName: "privateEndpointConnectionName",
    privateLinkServiceConnectionState: {
        description: "testing",
        status: azure_native.servicebus.PrivateLinkConnectionStatus.Rejected,
    },
    provisioningState: azure_native.servicebus.EndPointProvisioningState.Succeeded,
    resourceGroupName: "ArunMonocle",
});
Copy
resources:
  privateEndpointConnection:
    type: azure-native:servicebus:PrivateEndpointConnection
    properties:
      namespaceName: sdk-Namespace-2924
      privateEndpoint:
        id: /subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-ServiceBus-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847
      privateEndpointConnectionName: privateEndpointConnectionName
      privateLinkServiceConnectionState:
        description: testing
        status: Rejected
      provisioningState: Succeeded
      resourceGroupName: ArunMonocle
Copy

Create PrivateEndpointConnection Resource

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

Constructor syntax

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

@overload
def PrivateEndpointConnection(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              namespace_name: Optional[str] = None,
                              resource_group_name: Optional[str] = None,
                              private_endpoint: Optional[PrivateEndpointArgs] = None,
                              private_endpoint_connection_name: Optional[str] = None,
                              private_link_service_connection_state: Optional[ConnectionStateArgs] = None,
                              provisioning_state: Optional[Union[str, EndPointProvisioningState]] = None)
func NewPrivateEndpointConnection(ctx *Context, name string, args PrivateEndpointConnectionArgs, opts ...ResourceOption) (*PrivateEndpointConnection, error)
public PrivateEndpointConnection(string name, PrivateEndpointConnectionArgs args, CustomResourceOptions? opts = null)
public PrivateEndpointConnection(String name, PrivateEndpointConnectionArgs args)
public PrivateEndpointConnection(String name, PrivateEndpointConnectionArgs args, CustomResourceOptions options)
type: azure-native:servicebus:PrivateEndpointConnection
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. PrivateEndpointConnectionArgs
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. PrivateEndpointConnectionInitArgs
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. PrivateEndpointConnectionArgs
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. PrivateEndpointConnectionArgs
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. PrivateEndpointConnectionArgs
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 exampleprivateEndpointConnectionResourceResourceFromServicebus = new AzureNative.ServiceBus.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromServicebus", new()
{
    NamespaceName = "string",
    ResourceGroupName = "string",
    PrivateEndpoint = new AzureNative.ServiceBus.Inputs.PrivateEndpointArgs
    {
        Id = "string",
    },
    PrivateEndpointConnectionName = "string",
    PrivateLinkServiceConnectionState = new AzureNative.ServiceBus.Inputs.ConnectionStateArgs
    {
        Description = "string",
        Status = "string",
    },
    ProvisioningState = "string",
});
Copy
example, err := servicebus.NewPrivateEndpointConnection(ctx, "exampleprivateEndpointConnectionResourceResourceFromServicebus", &servicebus.PrivateEndpointConnectionArgs{
	NamespaceName:     pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	PrivateEndpoint: &servicebus.PrivateEndpointArgs{
		Id: pulumi.String("string"),
	},
	PrivateEndpointConnectionName: pulumi.String("string"),
	PrivateLinkServiceConnectionState: &servicebus.ConnectionStateArgs{
		Description: pulumi.String("string"),
		Status:      pulumi.String("string"),
	},
	ProvisioningState: pulumi.String("string"),
})
Copy
var exampleprivateEndpointConnectionResourceResourceFromServicebus = new PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromServicebus", PrivateEndpointConnectionArgs.builder()
    .namespaceName("string")
    .resourceGroupName("string")
    .privateEndpoint(PrivateEndpointArgs.builder()
        .id("string")
        .build())
    .privateEndpointConnectionName("string")
    .privateLinkServiceConnectionState(ConnectionStateArgs.builder()
        .description("string")
        .status("string")
        .build())
    .provisioningState("string")
    .build());
Copy
exampleprivate_endpoint_connection_resource_resource_from_servicebus = azure_native.servicebus.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromServicebus",
    namespace_name="string",
    resource_group_name="string",
    private_endpoint={
        "id": "string",
    },
    private_endpoint_connection_name="string",
    private_link_service_connection_state={
        "description": "string",
        "status": "string",
    },
    provisioning_state="string")
Copy
const exampleprivateEndpointConnectionResourceResourceFromServicebus = new azure_native.servicebus.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromServicebus", {
    namespaceName: "string",
    resourceGroupName: "string",
    privateEndpoint: {
        id: "string",
    },
    privateEndpointConnectionName: "string",
    privateLinkServiceConnectionState: {
        description: "string",
        status: "string",
    },
    provisioningState: "string",
});
Copy
type: azure-native:servicebus:PrivateEndpointConnection
properties:
    namespaceName: string
    privateEndpoint:
        id: string
    privateEndpointConnectionName: string
    privateLinkServiceConnectionState:
        description: string
        status: string
    provisioningState: string
    resourceGroupName: string
Copy

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

NamespaceName
This property is required.
Changes to this property will trigger replacement.
string
The namespace name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
PrivateEndpoint Pulumi.AzureNative.ServiceBus.Inputs.PrivateEndpoint
The Private Endpoint resource for this Connection.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
The PrivateEndpointConnection name
PrivateLinkServiceConnectionState Pulumi.AzureNative.ServiceBus.Inputs.ConnectionState
Details about the state of the connection.
ProvisioningState string | Pulumi.AzureNative.ServiceBus.EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
NamespaceName
This property is required.
Changes to this property will trigger replacement.
string
The namespace name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
PrivateEndpoint PrivateEndpointArgs
The Private Endpoint resource for this Connection.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
The PrivateEndpointConnection name
PrivateLinkServiceConnectionState ConnectionStateArgs
Details about the state of the connection.
ProvisioningState string | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
namespaceName
This property is required.
Changes to this property will trigger replacement.
String
The namespace name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Resource group within the Azure subscription.
privateEndpoint PrivateEndpoint
The Private Endpoint resource for this Connection.
privateEndpointConnectionName Changes to this property will trigger replacement. String
The PrivateEndpointConnection name
privateLinkServiceConnectionState ConnectionState
Details about the state of the connection.
provisioningState String | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
namespaceName
This property is required.
Changes to this property will trigger replacement.
string
The namespace name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
privateEndpoint PrivateEndpoint
The Private Endpoint resource for this Connection.
privateEndpointConnectionName Changes to this property will trigger replacement. string
The PrivateEndpointConnection name
privateLinkServiceConnectionState ConnectionState
Details about the state of the connection.
provisioningState string | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
namespace_name
This property is required.
Changes to this property will trigger replacement.
str
The namespace name
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the Resource group within the Azure subscription.
private_endpoint PrivateEndpointArgs
The Private Endpoint resource for this Connection.
private_endpoint_connection_name Changes to this property will trigger replacement. str
The PrivateEndpointConnection name
private_link_service_connection_state ConnectionStateArgs
Details about the state of the connection.
provisioning_state str | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
namespaceName
This property is required.
Changes to this property will trigger replacement.
String
The namespace name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Resource group within the Azure subscription.
privateEndpoint Property Map
The Private Endpoint resource for this Connection.
privateEndpointConnectionName Changes to this property will trigger replacement. String
The PrivateEndpointConnection name
privateLinkServiceConnectionState Property Map
Details about the state of the connection.
provisioningState String | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Canceled" | "Failed"
Provisioning state of the Private Endpoint Connection.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Location string
The geo-location where the resource lives
Name string
The name of the resource
SystemData Pulumi.AzureNative.ServiceBus.Outputs.SystemDataResponse
The system meta data relating to this resource.
Type string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
Id string
The provider-assigned unique ID for this managed resource.
Location string
The geo-location where the resource lives
Name string
The name of the resource
SystemData SystemDataResponse
The system meta data relating to this resource.
Type string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
id String
The provider-assigned unique ID for this managed resource.
location String
The geo-location where the resource lives
name String
The name of the resource
systemData SystemDataResponse
The system meta data relating to this resource.
type String
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
id string
The provider-assigned unique ID for this managed resource.
location string
The geo-location where the resource lives
name string
The name of the resource
systemData SystemDataResponse
The system meta data relating to this resource.
type string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
id str
The provider-assigned unique ID for this managed resource.
location str
The geo-location where the resource lives
name str
The name of the resource
system_data SystemDataResponse
The system meta data relating to this resource.
type str
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
id String
The provider-assigned unique ID for this managed resource.
location String
The geo-location where the resource lives
name String
The name of the resource
systemData Property Map
The system meta data relating to this resource.
type String
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

Supporting Types

ConnectionState
, ConnectionStateArgs

Description string
Description of the connection state.
Status string | Pulumi.AzureNative.ServiceBus.PrivateLinkConnectionStatus
Status of the connection.
Description string
Description of the connection state.
Status string | PrivateLinkConnectionStatus
Status of the connection.
description String
Description of the connection state.
status String | PrivateLinkConnectionStatus
Status of the connection.
description string
Description of the connection state.
status string | PrivateLinkConnectionStatus
Status of the connection.
description str
Description of the connection state.
status str | PrivateLinkConnectionStatus
Status of the connection.
description String
Description of the connection state.
status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
Status of the connection.

ConnectionStateResponse
, ConnectionStateResponseArgs

Description string
Description of the connection state.
Status string
Status of the connection.
Description string
Description of the connection state.
Status string
Status of the connection.
description String
Description of the connection state.
status String
Status of the connection.
description string
Description of the connection state.
status string
Status of the connection.
description str
Description of the connection state.
status str
Status of the connection.
description String
Description of the connection state.
status String
Status of the connection.

EndPointProvisioningState
, EndPointProvisioningStateArgs

Creating
Creating
Updating
Updating
Deleting
Deleting
Succeeded
Succeeded
Canceled
Canceled
Failed
Failed
EndPointProvisioningStateCreating
Creating
EndPointProvisioningStateUpdating
Updating
EndPointProvisioningStateDeleting
Deleting
EndPointProvisioningStateSucceeded
Succeeded
EndPointProvisioningStateCanceled
Canceled
EndPointProvisioningStateFailed
Failed
Creating
Creating
Updating
Updating
Deleting
Deleting
Succeeded
Succeeded
Canceled
Canceled
Failed
Failed
Creating
Creating
Updating
Updating
Deleting
Deleting
Succeeded
Succeeded
Canceled
Canceled
Failed
Failed
CREATING
Creating
UPDATING
Updating
DELETING
Deleting
SUCCEEDED
Succeeded
CANCELED
Canceled
FAILED
Failed
"Creating"
Creating
"Updating"
Updating
"Deleting"
Deleting
"Succeeded"
Succeeded
"Canceled"
Canceled
"Failed"
Failed

PrivateEndpoint
, PrivateEndpointArgs

Id string
The ARM identifier for Private Endpoint.
Id string
The ARM identifier for Private Endpoint.
id String
The ARM identifier for Private Endpoint.
id string
The ARM identifier for Private Endpoint.
id str
The ARM identifier for Private Endpoint.
id String
The ARM identifier for Private Endpoint.

PrivateEndpointResponse
, PrivateEndpointResponseArgs

Id string
The ARM identifier for Private Endpoint.
Id string
The ARM identifier for Private Endpoint.
id String
The ARM identifier for Private Endpoint.
id string
The ARM identifier for Private Endpoint.
id str
The ARM identifier for Private Endpoint.
id String
The ARM identifier for Private Endpoint.

PrivateLinkConnectionStatus
, PrivateLinkConnectionStatusArgs

Pending
Pending
Approved
Approved
Rejected
Rejected
Disconnected
Disconnected
PrivateLinkConnectionStatusPending
Pending
PrivateLinkConnectionStatusApproved
Approved
PrivateLinkConnectionStatusRejected
Rejected
PrivateLinkConnectionStatusDisconnected
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

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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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:servicebus:PrivateEndpointConnection 928c44d5-b7c6-423b-b6fa-811e0c27b3e0 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/privateEndpointConnections/{privateEndpointConnectionName} 
Copy

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

Package Details

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